blob: 106be2a60f39c019fd393dbae34b36926250f615 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_29940.dart:7:3: Error: 'a.b' can't be used as a type because 'a' doesn't refer to an import prefix.
// a.b c = null;
// ^^^
//
import self as self;
import "dart:core" as core;
static method main() dynamic {
core::String a = "";
invalid-type c = null;
}