f66e1ed7be
Change-Id: I5cc3339880d0a77fbbcbd9f8a22e1186e5e2a5df Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/145380 Reviewed-by: Johnni Winther <johnniwinther@google.com>
7 lines
72 B
Plaintext
7 lines
72 B
Plaintext
abstract class A {
|
|
T bar<T>();
|
|
String foo() => bar()!;
|
|
}
|
|
|
|
main() {}
|