357e83e44d
Change-Id: I747151249330ed3c9c1026289be52d5ca0dca891 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/185600 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
main = main::main;
|
|
library from "org-dartlang-test:///main.dart" as main {
|
|
|
|
import "package:example/b.dart";
|
|
|
|
static method main() → dynamic {
|
|
dart.core::print("hello");
|
|
b::b();
|
|
}
|
|
}
|
|
library from "package:example/b.dart" as b {
|
|
|
|
static method b() → dynamic {
|
|
dart.core::print("hello from v0.1.1");
|
|
}
|
|
}
|