Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pattern matching exhaustiveness for records #2221

Open
alex-snezhko opened this issue Dec 29, 2024 · 1 comment
Open

Pattern matching exhaustiveness for records #2221

alex-snezhko opened this issue Dec 29, 2024 · 1 comment
Labels

Comments

@alex-snezhko
Copy link
Member

The following program does not complain at compile-time but will fail at runtime

module Main
record T { a: Option<String> }
match ({ a: Some("b") }) {
  { a: None } => void,
}
@spotandjake
Copy link
Member

This might be related to #2219

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants