blob: e0f94025f361c83c1e5b83e9faca227b9eec7f46 [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() {}