blob: 0b236b52eebb0e92067d2017463281f275ece4d2 [file] [log] [blame]
main = fir::main;
library from "org-dartlang-test:///first.dart" as fir {
import "org-dartlang-test:///second.dart";
static method main() dynamic {
fir::method1();
sec::method2();
}
static method method1() dynamic {
dart.core::print("method1");
}
}
library from "org-dartlang-test:///second.dart" as sec {
static method method2() dynamic {
dart.core::print("method2");
}
}