40c7ac9038
BUG= R=jacobr@google.com Review URL: https://codereview.chromium.org/2033543002 .
25 lines
627 B
Dart
25 lines
627 B
Dart
// Copyright (c) 2016, 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";
|
|
|
|
// Regression test for recursive inheritance patterns
|
|
abstract class Comparable<T> {
|
|
int compare(T a);
|
|
}
|
|
class MI<T extends MI<T>> {
|
|
}
|
|
|
|
class PMI<T extends Comparable<T>> extends MI<PMI<T>> {}
|
|
|
|
void main() {
|
|
var a = new MI();
|
|
var b = new PMI();
|
|
a = b;
|
|
Expect.isTrue(a is MI);
|
|
Expect.isTrue(b is PMI);
|
|
Expect.isTrue(b is MI);
|
|
Expect.isTrue(b is MI<PMI>);
|
|
}
|