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