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