mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
class A {
|
||||
public void doTest() {
|
||||
Object b = new Inner(new Throwable("t"));
|
||||
}
|
||||
|
||||
private class <caret>Inner {
|
||||
private String myMessage;
|
||||
|
||||
public Inner(Throwable t) {
|
||||
String msg = t.getMessage();
|
||||
myMessage = msg;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "A";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user