blob: 1a0349b183f82d0da1f662acf50239f1d3b32edc [file] [log] [blame]
// Copyright (c) 2011, 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
/// @assertion A constant variable must be initialized to a compile-time
/// constant or a compile-time error occurs.
/// @description Checks that a compile-time error occurs if a constant variable
/// is initialized to a non compile-time constant.
/// @author msyabro
/// @reviewer iefremov
import "../../Utils/expect.dart";
class Foo {}
const Foo foo = new Foo();
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
try {
Expect.isTrue(foo is Foo);
} catch (ok) {}
}