-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Static typing error not caught by compiler (generic method, generic class) #45731
Comments
The invocation So the inference on However, this implies that This fails at run time, because the actual type of is The reason why this error occurs at run time and not at compile time is that Dart uses dynamically checked covariance. The language was designed to do that from day one, and it amounts to the same trade-off between static and dynamic errors that Java and C# have made for arrays (it's the same kind of error as It is quite likely that Dart will support statically checked variance, in particular, declaration-site variance (dart-lang/language#524), and we might also support some form of use-site variance (dart-lang/language#753). |
Given that sound variance is already discussed and handled in existing issues, and the example here does not raise any unknown malfunctions, I'll close this issue as working-as-intended. |
Got it, thanks. In other words, it's a (somewhat subtle) consequence of allowing covariant assignment. And I totally get that allowing covariance to break soundess is a reasonable stance. Just to establish a record, here's a clearer (at least to me!) illustration of what's going on:
|
lndeed! Here's an even simpler example: void main() {
List<num> xs = <int>[];
xs.add(3.14); // Dynamic type error: `3.14` is not an `int`.
} |
Sure, that's the obvious textbook example of type parameter covariance breaking soundess. The observation I'm making (in part for a dartdoc comment, more or less for posterity) is that in this example, soundness is broken in a much less obvious way. The actual place this came up in code was in what could be considered a degenerate Visitor pattern. Visitor being statically type-unsafe is a not-immediately-obvious outcome of allowing covariant assignment. It fooled me at first, anyway! |
Here's a fairly minimal program to reproduce the problem:
Clearly, the argument "9" in the last print statement is a statically knowable typing error, but the compiler doesn't catch it, viz:
This static typing error wasn't caught in the compiler, but the runtime of course did barf. I didn't probe too hard to see just how minimal this example is -- not sure if "const" has anything to do with it, for example.
This is on:
The text was updated successfully, but these errors were encountered: