class Test { void m() { throwAnException(null); } static void throwAnException(String arg) { throw new RuntimeException(); } }