mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
14 lines
178 B
Java
14 lines
178 B
Java
class MyTest {
|
|
|
|
MyTest foo() {
|
|
return this;
|
|
}
|
|
|
|
{
|
|
new MyTest()
|
|
.foo()
|
|
.foo()
|
|
.foo()
|
|
.<selection>f<caret>oo</selection>();
|
|
}
|
|
} |