Files
sdk/tests/language_2/switch/case_runtime_test.dart
T
Leaf Petersen b101a7d002 Add language versions to _2 test libraries
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Leaf Petersen <leafp@google.com>
2021-04-26 17:58:57 +00:00

61 lines
1.0 KiB
Dart

// TODO(multitest): This was automatically migrated from a multitest and may
// contain strange or dead code.
// @dart = 2.9
// 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();
}
class C implements D {
final int x;
const C() : x = 0;
const C.fromD() : x = 1;
}
class D implements A {
int get x => 0;
const factory D() = C.fromD;
}
main() {
switch (new B()) {
}
switch (new C()) {
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;
}
switch (new A()) {
case const A():
Expect.fail("bad switch");
break;
}
}