blob: fb76c00b36404aa65aa9f6b3abbf5a09f4a28593 [file] [log] [blame]
//
// Problems in component:
//
// pkg/front_end/testcases/nnbd/strong_lib_not_ok_from_dill/strong_lib.dart: Error: A library can't opt out of non-nullable by default, when in nnbd-strong mode.
//
library /*isNonNullableByDefault*/;
import self as self;
import "strong_lib.dart" as str;
import "org-dartlang-testcase:///strong_lib.dart";
static method main() dynamic {
str::foo();
}
library;
import self as str;
import "dart:core" as core;
static method foo() void {
core::print("hello");
}