blob: fbe07d1857145175698bff938eb706a9438a81f1 [file] [log] [blame]
const String? maybe = bool.fromEnvironment("not there") ? "string" : null;
extension type const Ext._(String _) implements String {
const Ext() : assert(maybe != null, "Must not be null"), _ = "OK";
}
void main() {}