blob: 21030cdf45ae3db5c099d9283b6e215467a84448 [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class A {
Map<String, var>? m;
}
main() {
var a = new A();
a.m = null;
}