blob: ae8c8893cb47348f1c71e96a9980de5c19a13cee [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/issue49127.dart:10:3: Warning: The extension 'E' cannot be null.
// Try replacing '?.' with '.'
// E?.s;
// ^
//
import self as self;
import "dart:core" as core;
extension E on core::int {
static field s = self::E|s;
}
static field core::String E|s = "Lily was here";
static method test() dynamic {
self::E|s;
}