mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 09:43:08 +00:00
a8cb0b4f98
Closes https://github.com/dart-lang/sdk/pull/50762 GitOrigin-RevId: e85b436a4cb108176273ffeffd96cc4ba84df444 Change-Id: I391df2dfb65c69c658965d9ebfd2d2314841044c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/276320 Reviewed-by: Erik Ernst <eernst@google.com> Commit-Queue: Erik Ernst <eernst@google.com>
34 lines
683 B
Dart
34 lines
683 B
Dart
// TODO(multitest): This was automatically migrated from a multitest and may
|
|
// contain strange or dead code.
|
|
|
|
// Copyright (c) 2018, 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.
|
|
|
|
// Test for compliance with tables at
|
|
// https://github.com/dart-lang/sdk/issues/33235#issue-326617285
|
|
// Files 01 to 16 should be compile time errors, files 17 to 21 should not.
|
|
|
|
class A {
|
|
int get n => 42;
|
|
}
|
|
|
|
class B extends A {
|
|
|
|
}
|
|
|
|
abstract class B2 implements A {
|
|
|
|
}
|
|
|
|
class C {
|
|
|
|
|
|
int get n => 42;
|
|
}
|
|
|
|
main() {
|
|
print(C);
|
|
print(B);
|
|
print(B2);
|
|
}
|