
public class ThreadWTF {
	public static void main(String[] args) throws Exception {
		Thread myThread = null;

		myThread.sleep(1000);
	}
}

