| Index: pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_type_args_exact.dart
|
| diff --git a/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_type_args_exact.dart b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_type_args_exact.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..83b0d33c6046a6f87fdab2381a2d00a593a2ddf1
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_type_args_exact.dart
|
| @@ -0,0 +1,10 @@
|
| +// 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.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +class C<T extends num> {}
|
| +
|
| +var /*@topType=C<int>*/ x = new C<int>();
|
|
|