blob: aed26bd7bdd6b68419f373cd4cc424eddc05a059 [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;
}