blob: 72a383595d010beddfdba334e5efc54469e56667 [file] [log] [blame]
package groovy
class LocalFieldTest extends GroovyTestCase {
private def x
void testAssert() {
this.x = "abc"
assert this.x == "abc"
assert this.x != "def"
}
}