blob: bcc6c442f3fa247af4b0229498ce5e79fd923acd [file] [log] [blame]
main = mai::main;
library bLibrary from "org-dartlang-test:///b.dart" as bLi {
static method foo() dynamic {
dart.core::print("hello from b.dart foo!");
}
}
library mainLibrary from "org-dartlang-test:///main.dart" as mai {
import "org-dartlang-test:///b.dart" as b;
static method main() dynamic {
bLi::foo();
}
}