mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
14 lines
150 B
Java
14 lines
150 B
Java
class Test {
|
|
|
|
Test foo(long l) {
|
|
return this;
|
|
}
|
|
|
|
{
|
|
Test t = new Test()
|
|
.foo(-(5<caret>L))
|
|
.foo(7L)
|
|
.foo(-(5L));
|
|
}
|
|
}
|