blob: f92679e3cac528e82b46aaba7cf54cd709b302e3 [file] [log] [blame]
// Copyright (c) 2022, 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 If the resulting class would have any naming conflicts, or other
/// compile-time errors, the enum declaration is invalid and a compile-time
/// error occurs. Such errors include, but are not limited to:
/// ...
/// Declaring or mixing in a member which is not a valid override of a
/// super-interface member declaration, including, but not limited to, the index
/// and toString members of Enum.
///
/// @description Check that it is no compile-time error to declare a member
/// which is a valid override of a super-interface member declaration
/// @author sgrekhov@unipro.ru
/// @issue 48299
// SharedOptions=--enable-experiment=enhanced-enums
import "../../Utils/expect.dart";
enum E1 {
e1,
e2,
e3;
int get index => 0;
String toString([int index = 0]) => "E1";
bool operator ==(covariant E1 other) {
return true;
}
}
enum E2<T> {
e1<int>(42),
e2<String>("42"),
e3<bool>(false);
const E2(T t);
int get index => 1;
String toString([int index = 0]) => "E2";
bool operator ==(covariant E2 other) {
return false;
}
}
main() {
Expect.equals(0, E1.e1.index);
Expect.equals(0, E1.e2.index);
Expect.equals(0, E1.e3.index);
Expect.equals("E1", E1.e1.toString());
Expect.equals("E1", E1.e2.toString(1));
Expect.equals("E1", E1.e3.toString());
Expect.isTrue(E1.e1 == E1.e2);
Expect.isTrue(E1.e1 == E1.e3);
Expect.isTrue(E1.e3 == E1.e2);
Expect.equals(1, E2.e1.index);
Expect.equals(1, E2.e2.index);
Expect.equals(1, E2.e3.index);
Expect.equals("E2", E2.e1.toString());
Expect.equals("E2", E2.e2.toString(1));
Expect.equals("E2", E2.e3.toString());
Expect.isFalse(E2.e1 == E2.e2);
Expect.isFalse(E2.e1 == E2.e3);
Expect.isFalse(E2.e3 == E2.e2);
Expect.isFalse(E2.e1 == E2.e1);
Expect.isFalse(E2.e2 == E2.e2);
Expect.isFalse(E2.e3 == E2.e3);
}