(String[] args)
| 7 | |
| 8 | public class FreezeAlien { |
| 9 | public static void |
| 10 | main(String[] args) throws Exception { |
| 11 | try( |
| 12 | ObjectOutputStream out = new ObjectOutputStream( |
| 13 | new FileOutputStream("X.file")); |
| 14 | ) { |
| 15 | Alien quellek = new Alien(); |
| 16 | out.writeObject(quellek); |
| 17 | } |
| 18 | } |
| 19 | } |
nothing calls this directly
no test coverage detected