| Index: pkg/front_end/testcases/inference/field_refers_to_static_getter.dart
|
| diff --git a/pkg/front_end/testcases/inference/field_refers_to_static_getter.dart b/pkg/front_end/testcases/inference/field_refers_to_static_getter.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3f5ae588dbdd7fd212b83e15a7c38e239a37167e
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/field_refers_to_static_getter.dart
|
| @@ -0,0 +1,11 @@
|
| +// 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 {
|
| + final /*@topType=int*/ x = _x;
|
| + static int get _x => null;
|
| +}
|
|
|