4289a9967b
Change-Id: I56ff4d4391b7a22d709dc60b696646895928e34c Reviewed-on: https://dart-review.googlesource.com/46100 Reviewed-by: Peter von der Ahé <ahe@google.com> Commit-Queue: Samir Jindel <sjindel@google.com>
10 lines
194 B
Plaintext
10 lines
194 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method topLevel([dynamic a = 42]) → dynamic
|
|
return a;
|
|
static method main() → dynamic {
|
|
core::print(self::topLevel());
|
|
}
|