This code: ``` dart void f(int x) => print(x); void main() { f.call("hello"); } ``` gets no errors or warnings in strong mode. Since we know the type of `f`, which should treat this as a regular call, and issue an error.