blob: 7e20425a800a83cc2752a8f2177c226c7cc122a3 [file] [log] [blame]
/**
* @version $Revision$
*/
class UnknownVariableBug extends GroovyTestCase {
void testBug() {
def shell = new GroovyShell()
shouldFail {
shell.evaluate """
def x = foo
"""
}
shell.evaluate """
foo = 1
def x = foo
"""
}
}