f66e1ed7be
Change-Id: I5cc3339880d0a77fbbcbd9f8a22e1186e5e2a5df Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/145380 Reviewed-by: Johnni Winther <johnniwinther@google.com>
12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
class A<X> {}
|
|
|
|
class B extends A<Null> {}
|
|
|
|
class C {
|
|
Null foo(Null n, A<Null> an) => n;
|
|
}
|
|
|
|
foo() {}
|
|
bar() {}
|
|
main() {}
|