aiken/crates/aiken-lang
KtorZ 3c7663cd3c
Basic exhaustivness check on list patterns
Before that commit, the type-checker would allow unsafe list patterns
  such as:

  ```
  let [x] = xs

  when xs is {
    [x] -> ...
    [x, ..] ->  ...
  }
  ```

  This is quite unsafe and can lead to confusing situations. Now at
  least the compiler warns about this. It isn't perfect though,
  especially in the presence of clause guards. But that's a start.
2023-02-11 16:20:28 +01:00
..
src Basic exhaustivness check on list patterns 2023-02-11 16:20:28 +01:00
Cargo.toml Release 0.0.28 2023-01-06 13:41:00 -05:00