blob: 671fc5ab40b7f306a180f2e8c356f0c20722c715 [file] [log] [blame]
class Test {
Test foo(long l) {
return this;
}
{
Test t = new Test()
.foo(-(5<caret>L))
.foo(7L)
.foo(-(5L));
}
}