blob: 9438956cfe8d35a1998924811210611ac3f16052 [file] [log] [blame]
// Copyright (c) 2017, 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.md file.
class A {
int field;
}
class B<T extends A> {
int field;
}
class C {
int field;
}