blob: 180e0accfb2ceab0bfebe0f362cf22dd978a27ca [file] [log] [blame] [edit]
// 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.
library test;
const x1 = 1;
final x2 = 1;
final y1 = x1;
final y2 = x2;
foo() {
int i;
i = y1;
i = y2;
}
main() {
foo();
}