| Index: pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
|
| diff --git a/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e07393e0d34775d97feaa827a14c8db1ec3f5a1a
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/instantiate_to_bounds_invoke_constructor_no_bound.dart
|
| @@ -0,0 +1,12 @@
|
| +// 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> {}
|
| +
|
| +main() {
|
| + var /*@type=C<dynamic>*/ v = /*@typeArgs=dynamic*/ new C();
|
| +}
|
|
|