Clarification of a compile-time error in chapter 9. Generics of the spec #955
Labels
area-language
Dart language related items (some items might be better tracked at github.com/dart-lang/language).
closed-invalid
Closed as we don't believe the reported issue is generally actionable
This issue was originally filed by [email protected]
Consider the following test
class C<T extends T<T>>{}
main() {
}
Currently, the VM produce the following compile-time error:
Error: line 17 pos 8: type parameter 'TypeParameter: name T; index: 0' cannot be parameterized
However I can't see anything about handling such a generic in the spec.
The text was updated successfully, but these errors were encountered: