111f0b1e66
Make smart type search work for Groovy. #KT-14974 Fixed
12 lines
410 B
Groovy
Vendored
12 lines
410 B
Groovy
Vendored
class GroovyClass extends JavaWithGroovyInvoke_0 {
|
|
public def fieldNoType = new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
public def JavaWithGroovyInvoke_0.OtherJavaClass fieldWithType = fieldNoType
|
|
|
|
def methodNoType() {
|
|
new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
}
|
|
|
|
JavaWithGroovyInvoke_0.OtherJavaClass methodWithType() {
|
|
new JavaWithGroovyInvoke_0.OtherJavaClass()
|
|
}
|
|
} |