blob: adcc966a388057b2c68091a69fd8a6afa7b14d32 [file] [log] [blame]
class ArrayTypeTest extends GroovyTestCase {
void testClosureWithTypedParam() {
def c = {String[] foo->println("called with $foo") }
c(null)
}
void testVariableType() {
Object[] foo = methodThatReturnsArray()
println "foo is $foo"
}
Object[] methodThatReturnsArray() {
println "Invoked the method"
return null
}
}