blob: 2ca182586f993dce00ce93f80863818bcac5249f [file] [log] [blame] [edit]
// 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 file.
library test;
class A<T> {
A(B<List<T>> b);
}
class B<T> {}
main() {
var x = new A(new B());
}