b11cf5e3b5
Change-Id: I084af2503ba783de4280f520c5a3000f0b84abe7 Reviewed-on: https://dart-review.googlesource.com/32560 Reviewed-by: Sigmund Cherem <sigmund@google.com>
15 lines
322 B
Dart
15 lines
322 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<T> {
|
|
m() => new B<T>();
|
|
}
|
|
|
|
/*class: B:deps=[A]*/
|
|
class B<T> {}
|
|
|
|
main() {
|
|
new A<int>().m();
|
|
}
|