blob: 9283111ca36126d89e6aa45aaf55ea8a55aeb581 [file] [log] [blame]
class UnsafeNavigationTest extends GroovyTestCase {
void testUnsafePropertyNavigations() {
def x = null
try {
def y = x.foo
fail("should fail")
}
catch (NullPointerException e) {
assert e != null
}
}
}