904882fce3
Closes #42435. Closes #45491. Closes #45493. Bug: https://github.com/dart-lang/sdk/issues/42435 Bug: https://github.com/dart-lang/sdk/issues/45491 Bug: https://github.com/dart-lang/sdk/issues/45493 Change-Id: I368aff553a8bdd5e5312ecf06f0d19c8390a0d22 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/193662 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
6 lines
81 B
Dart
6 lines
81 B
Dart
class A<X extends A<X>> {}
|
|
|
|
typedef AAlias = Function<X extends A>();
|
|
|
|
main() {}
|