blob: 05791e60519b76fb48204610b2145d705e455c15 [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision: 1.4 $
*/
class ChristofsPropertyBug extends GroovyTestCase {
def mixedCaseProperty
void testChristofsPropertyBug() {
this.mixedCaseProperty = "test"
shouldFail({this.mixedcaseproperty = "test"})
}
def getMixedCaseProperty() { mixedCaseProperty }
void setMixedCaseProperty(val) { this.mixedCaseProperty = val }
}