| Index: pkg/front_end/testcases/inference/inferred_nonstatic_field_depends_on_top_level_var_simple.dart
|
| diff --git a/pkg/front_end/testcases/inference/inferred_nonstatic_field_depends_on_top_level_var_simple.dart b/pkg/front_end/testcases/inference/inferred_nonstatic_field_depends_on_top_level_var_simple.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..43d26fc3a8d8090f21545e58efb453de728cde2a
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/inferred_nonstatic_field_depends_on_top_level_var_simple.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;
|
| +
|
| +var /*@topType=String*/ x = 'x';
|
| +
|
| +class C {
|
| + var /*@topType=String*/ y = x;
|
| +}
|
|
|