forked from dart-lang/co19
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes dart-lang#3030. Add additional test checking non const in a con…
…st constructor initializer list
- Loading branch information
Showing
4 changed files
with
74 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
...ge/Classes/Constructors/Constant_Constructors/not_a_constant_in_initializer_list_t04.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright (c) 2025, 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 Any expression that appears within the initializer list of a | ||
/// constant constructor must be a potentially constant expression, or a | ||
/// compile-time error occurs. | ||
/// | ||
/// A potentially constant expression is an expression E that would be a valid | ||
/// constant expression if all formal parameters of E's immediately enclosing | ||
/// constant constructor were treated as compile-time constants that were | ||
/// guaranteed to evaluate to an integer, boolean or string value as required | ||
/// by their immediately enclosing superexpression. | ||
/// | ||
/// @description Checks that it is a compile-time error when a constant | ||
/// constructor's initializer list contains a use of a non-constant. | ||
/// @author [email protected] | ||
/// @issue 59804 | ||
class A { | ||
final int id; | ||
const A(this.id); | ||
static A answer = const A(42); | ||
} | ||
|
||
final A zero = const A(0); | ||
|
||
class C { | ||
final A a; | ||
const C(this.a); | ||
const C.fromAnswer() : a = A.answer; | ||
// ^^^^^^^^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
|
||
const C.fromGlobal() : a = zero; | ||
// ^^^^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
} | ||
|
||
main() { | ||
print(C); | ||
} |