blob: f61bf4ab203017979e6ea0b2ec148475f8e40ce1 [file] [log] [blame]
// Copyright (c) 2011, 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.
abstract class A {}
abstract class B extends A {}
class ClassWithTypeParameter<T extends B> {
A aField;
B bField;
T tField;
}