blob: 54ccb8f66dee5e734a05dd09e39b763ef49a6be3 [file] [log] [blame]
// 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.
// @dart=2.9
// This test checks that instantiate to bound leaves typedef types that have
// their arguments defined by the programmer intact in cases when those typedef
// types are used as type arguments of literal lists and are found in method
// bodies.
typedef A<T>(T p);
class B<U> {
fun() {
List<A<U>> foo = <A<U>>[];
List<A<num>> bar = <A<num>>[];
}
}
main() {
List<A<num>> bar = <A<num>>[];
}