blob: dac96b84d0ab47c69782e229cf4d5488a660985b [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.
// @dart=2.9
/*@testedFeatures=inference*/
library test;
const x1 = 1;
final x2 = 1;
final y1 = x1;
final y2 = x2;
foo() {
int i;
i = y1;
i = y2;
}
main() {
foo();
}