If I type `s("test")({ })`, IDEA asks me if I want...
# announcements
r
If I type
s("test")({ })
, IDEA asks me if I want to move the lambda argument out of the parenthesis, which returns
s("test"){ }
. That cannot compile, however, as it now thinks the lambda is the second argument to the
s
function. Is this a bug, or just a crazy edge case?