blob: 65b6822c58a5625ca21c8afcde89b045d6fb0649 [file] [log] [blame]
// Copyright (c) 2017, 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.
/*@testedFeatures=inference*/
library test;
test1() {
num x = 3;
x = null;
}
main() {
test1();
}