blob: 4a7fdf352d7e17d2c5c262d978a57599bc5922da [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/regress/issue_29940.dart:7:3: Warning: '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;
static method main() dynamic {
dynamic a = "";
invalid-type c = null;
}