blob: 6a45370d35602d1656805f336dd0a6d86b9c4962 [file] [log] [blame]
// 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.
// Extending a type parameter is not allowed.
abstract class A<T> extends T {}
main() {
A a = new A();
}