blob: f07748ec5bf2332a23b8ce2c73f48c45b7d9024c [file] [log] [blame]
// Errors:
//
// 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;
// ^^^
library;
import self as self;
import "dart:core" as core;
static method main() dynamic {
core::String a = "";
invalid-type c = null;
}