blob: 7a6a6a566e6422cb3aa6a05a15b4f71f6e290d31 [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.
// @dart=2.9
/*@testedFeatures=checks*/
library test;
class C {
dynamic f;
C(this.f);
}
void g(C c) {
c.f(1.5);
}
void h(int i) {}
void test() {
g(new C(h));
}
main() {}