blob: 39d8091e068ecb2bd3d5ccbd55455a370609b366 [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;
var /*@topType=String*/ x = 'x';
class C {
var /*@topType=String*/ y = x;
}
main() {
x;
}