blob: 6b05bc4db2ab4ae4823b1c3b1f336b3581dcd0b9 [file] [log] [blame]
// Copyright (c) 2023, 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 to refer to a declared or default
/// generative constructor of an enum declaration in any way, other than:
/// - As the target of a redirecting generative constructor of the same enum
/// declaration (: this(...);/: this.targetName(...);), or
/// - Implicitly in the enum value declarations of the same enum
/// (enumValueName(args)/enumValueName.targetName(args)).
///
/// @description Check that it’s not an error to call a factory constructor
/// outside of the enum where it was declared
/// @author sgrekhov22@gmail.com
import "../../Utils/expect.dart";
enum E {
e1(1),
e2.named(2);
const E(this.i);
const E.named(int i) : this.i = i;
factory E.test1(int i) => i == 1 ? E.e1 : E.e2;
factory E.test2(int i) = E.test1;
final int i;
}
main() {
Expect.equals(1, E.test1(1).i);
Expect.equals(2, E.test1(2).i);
Expect.equals(2, E.test1(3).i);
Expect.equals(1, E.test2(1).i);
Expect.equals(2, E.test2(2).i);
Expect.equals(2, E.test2(3).i);
}