blob: 1775b935e3ddb0bd7b715669065f99e58bca793e [file] [log] [blame]
package gls.expressions
import gls.CompilableTestSupport
public class DeclarationTest extends CompilableTestSupport {
public void testSingleDeclarationInParenthesis() {
shouldNotCompile """
(def a=1).method()
"""
shouldCompile """
(a=1).method()
"""
}
}