Details
Description
class Foo {
static foo() {
println this.name
}
static void bar() { println this.name } }
}
Foo.foo() // prints Foo
Foo.bar() // fails with ClassCastException
class Foo {
static foo() {
println this.name
}
static void bar() { println this.name } }
}
Foo.foo() // prints Foo
Foo.bar() // fails with ClassCastException
Fixed