1import java.io.Serializable; 2 3public class T { 4 public static void main(String[] args) { 5 T t = new T(); 6 t.createObject(); 7 } 8 9 public Object createObject() { 10 return new Serializable() { 11 void method() { 12 } 13 }; 14 } 15} 16 17