blob: d7e8119d117136656ea3b9a0c1caab57414a363c [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 C extends D {
set /*@topType=void*/ foo(/*@topType=int*/ x) {}
}
class D {
int foo;
}
main() {}