mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
UnsupportedOperationException
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
|
||||
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
interface I {
|
||||
void m(String s) throws IOException;
|
||||
}
|
||||
class Test {
|
||||
public void test() throws IOException {
|
||||
File file = new File("temp");
|
||||
try {
|
||||
for(int t = 0; t < 4; ++t) {
|
||||
for (int i = 0; i < 10; ++i) {
|
||||
I appender = out -> File.createTempFile("", "").exists();
|
||||
appender.m("");
|
||||
}
|
||||
}
|
||||
}
|
||||
finally {
|
||||
System.out.println(file);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user