class Example { public static void main(String[] args) { final Runnable r = new Runnable() { public void run() {} public void m2() {} }; r.m2(); } }