blob: 6eb1e47526ce06be6af3f66f6c1afb71c022a707 [file] [log] [blame]
library export;
import self as self;
import "foo.dart" as foo;
additionalExports = (foo::foo)
export "org-dartlang-testcase:///foo.dart";
library foo;
import self as foo;
import "dart:core" as core;
static method foo() dynamic {
core::print("Hello, World!");
}