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