e74c829499
Change-Id: I91683d57e25457e371aaf8f0bb0092426409186e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134526 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
11 lines
195 B
Plaintext
11 lines
195 B
Plaintext
library /*isNonNullableByDefault*/;
|
|
import self as self;
|
|
|
|
static method foo() → Never {
|
|
while (true) {
|
|
}
|
|
}
|
|
static method bar() → Never?
|
|
return null;
|
|
static method main() → dynamic {}
|