f0b5e3466a
Change-Id: Ib1c1790d883acd51c690237fd4d3374d6e0b92e5 Reviewed-on: https://dart-review.googlesource.com/36740 Reviewed-by: Sigmund Cherem <sigmund@google.com>
13 lines
332 B
Dart
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>;
|
|
}
|