File A: ``` class A { void public() { } void _private() { } } void test (A x) { x._private(); } ``` File B: ``` import 'A'; class B implements A { void public() { } } void main() { test(new B()); } ``` This code has no analyzer warnings, despite being guaranteed to crash.