blob: f0e2e729f671f424787f4bd7445d9f52e4ef2fb6 [file] [log] [blame]
package groovy.bugs
class Groovy2801Bug extends GroovyTestCase {
def void testOverrideToStringInMapOfClosures() {
def proxyImpl = [foo: { "Foo!" }, toString: { "overridden." }] as IGroovy2801Bug
assert proxyImpl.toString() == "overridden."
}
}
interface IGroovy2801Bug {
String foo()
}