mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 09:43:08 +00:00
68e904e444
Change-Id: I265933f36f68df6f8e542a3f85ce0b04e1dfd549 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134205 Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: Erik Ernst <eernst@google.com> Commit-Queue: Bob Nystrom <rnystrom@google.com>
34 lines
738 B
Dart
34 lines
738 B
Dart
// TODO(multitest): This was automatically migrated from a multitest and may
|
|
// contain strange or dead code.
|
|
|
|
// Copyright (c) 2012, 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.
|
|
// Dart test program for constructors and initializers.
|
|
|
|
// Exercises issue 2282, factory constructors in abstract classes should
|
|
// not emit a static type warning
|
|
|
|
class B extends A1 {
|
|
B() {}
|
|
method() {}
|
|
}
|
|
|
|
abstract class A1 {
|
|
A1() {}
|
|
method(); // Abstract.
|
|
factory A1.make() {
|
|
return new B();
|
|
}
|
|
}
|
|
|
|
class A2 {
|
|
// Intentionally abstract method.
|
|
|
|
A2.make() {}
|
|
}
|
|
|
|
main() {
|
|
new A1.make();
|
|
|
|
}
|