blob: a67368d5c5d30be04b497d8e3c42fd6b0982184e [file] [log] [blame]
class Test {
Test foo(long l) {
return this;
}
public static final long LONG = 5L;
{
Test t = new Test()
.foo(-LONG)
.foo(7L)
.foo(-LONG);
}
}