blob: 5aac457b22efc862a8e73ba74936bd8a9807b4b0 [file] [log] [blame]
// "Add Exception to Method Signature" "false"
class C {
public static void main(String[] args) throws InterruptedException {
new Thread(( ) -> {
Thread.sl<caret>eep(2000);
}).start();
}
}