11 lines
124 B
Java
Raw Normal View History

2021-07-16 17:12:20 -05:00
public class Empty3
{
public static void main(String[] args)
{
if (new Object() == null)
throw new Error("");
}
}