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