Files
sdk/tests/compiler/dart2js/rti/data/subclass_fixed.dart
T
Johnni Winther f0b5e3466a Refactor collection and printing features for annotations.
Change-Id: Ib1c1790d883acd51c690237fd4d3374d6e0b92e5
Reviewed-on: https://dart-review.googlesource.com/36740
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2018-01-29 08:30:11 +00:00

13 lines
332 B
Dart

// Copyright (c) 2018, 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.
/*class: A:explicit=[A<int>],needsArgs*/
class A<T> {}
class B extends A<int> {}
main() {
new B() is A<int>;
}