blob: 5f1e2ba13c23782033e73de9c4712b51e510672e [file] [log] [blame]
// 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";
class Bar<T> {
}
class Foo<T> extends Bar<Foo<T>> {
}
void main() {
print(new Foo<int>());
}