Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addToThrows/beforeLambdaExternal.java
2014-12-06 11:49:04 +03:00

10 lines
208 B
Java

// "Add exception to method signature" "false"
class C {
public static void main(String[] args) throws InterruptedException {
new Thread(( ) -> {
Thread.sl<caret>eep(2000);
}).start();
}
}