blob: 5ab626d62b7952f0006f5647751f3586fd957948 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/check_deferred_is_check.dart:9:14: Warning: The type 'C' is deferred loaded via prefix 'lib' and can't be used as a type annotation.
// - 'C' is from 'pkg/front_end/testcases/deferred_lib.dart'.
// Try removing 'deferred' from the import of 'lib' or use a supertype of 'C' that isn't deferred.
// print(x is lib.C);
// ^^^^^
//
import self as self;
import "dart:core" as core;
static method main() dynamic {}
static method test(dynamic x) dynamic {
core::print(x is invalid-type);
}