blob: 0d751d919c2ee3857ad99ee73b268e048f6d6a14 [file] [log] [blame]
// 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 A implements B {
get /*@topType=int*/ x => f();
void set x(/*@topType=int*/ value) {}
}
class B {
var /*@topType=int*/ x = 0;
}
dynamic f() => null;
main() {}