blob: 163624b86f2369f3aa10b52f21a64e5bb359146b [file] [log] [blame]
/*
* Copyright (c) 2019, 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 Finally, the conditional [?]/[:] operator only evaluates one of
* its branches, depending on whether the condition expression evaluates to
* [true] or [false]. The other branch must also be a potentially constant
* expression.
* @description Checks that conditional operator [?]/[:] in constant expression
* throws a compile error if some operand is of incorrect type.
* @author iarkh@unipro.ru
*/
const String s = "constant string";
const dynamic d = "another string";
class MyClass1 {
final int res;
const MyClass1() : res = (false ? s : 0);
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
class MyClass2 {
final int res;
const MyClass2() : res = (false ? d as int : 0);
}
class MyClass3 {
final int res;
const MyClass3() : res = (false ? 0 : s as int);
}
class MyClass4 {
final int res;
const MyClass4() : res = (false ? 0 : "bad str");
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
class MyClass5 {
final int res;
const MyClass5() : res = (false ? 15 : d);
}
main() {
const c1 = MyClass1();
const c2 = MyClass2();
const c3 = MyClass3();
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
const c5 = MyClass5();
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}