mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: ee720fecb1fb4c447188eab28090bc858d22119e
10 lines
229 B
Java
10 lines
229 B
Java
class CrashTestDummy {
|
|
public CrashTestDummy(String bar<caret>) { // inline the parameter
|
|
System.out.println(bar);
|
|
super();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new CrashTestDummy("bar".toString());
|
|
}
|
|
} |