blob: ce47f6fb0c8853b45c7ad29d7649884c0ce954d0 [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.
/// @assertion It is a compile-time error if evaluation of a constant object
/// results in an uncaught exception being thrown.
/// @description Checks that it is a compile-time error if evaluation of a
/// constant object results in an uncaught exception being thrown.
/// @author msyabro
class A {
const A(): x = 1 ~/ 0; // IntegerDivisionByZeroException
final x;
}
const a = const A();
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
try {
a;
} catch (e) {}
}