| Index: tests/language/switch_case_test.dart
|
| diff --git a/tests/language/switch_case_test.dart b/tests/language/switch_case_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c3d66d6ba09a0aa3d928d4da4f556f631eff3411
|
| --- /dev/null
|
| +++ b/tests/language/switch_case_test.dart
|
| @@ -0,0 +1,48 @@
|
| +// Copyright (c) 2014, 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.
|
| +
|
| +import "package:expect/expect.dart";
|
| +
|
| +class A {
|
| + const A();
|
| + const factory A.B() = B;
|
| + const factory A.C() = C;
|
| + const factory A.C2() = D;
|
| +}
|
| +
|
| +class B implements A {
|
| + const B();
|
| +
|
| + operator ==(o) => true; /// 00: compile-time error
|
| +}
|
| +
|
| +class C implements A {
|
| + final int x;
|
| + const C() : x = 0;
|
| + const C.fromD() : x = 1;
|
| +}
|
| +
|
| +class D implements C {
|
| + const factory D() = C.fromD;
|
| +}
|
| +
|
| +main() {
|
| + var o = new A();
|
| + switch (o) {
|
| + case const C(): Expect.fail("bad switch"); break;
|
| + case const A.C(): Expect.fail("bad switch"); break;
|
| + case const A.C2(): Expect.fail("bad switch"); break;
|
| + case const A(): Expect.fail("bad switch"); break; /// 01: compile-time error
|
| + }
|
| +
|
| + switch (o) {
|
| + case const A(): Expect.fail("bad switch"); break;
|
| + case const A.B(): Expect.fail("bad switch"); break; /// 02: compile-time error
|
| + }
|
| +
|
| + switch (o) {
|
| + case const B(): Expect.fail("bad switch"); break; /// 00: continued
|
| + case const A.B(): Expect.fail("bad switch"); break; /// 00: continued
|
| + }
|
| +}
|
|
|