Files
kotlin-fork/idea/testData/resolve/referenceWithLib/overridingFunctionWithSamAdapter.kt
T
Pavel V. Talanov bafe8e55ce Create SyntheticMemberDescriptor interface
Implement this interface by sam adapters/constructors and use it in navigation

 #KT-11708 Fixed
2016-06-20 20:15:34 +03:00

13 lines
128 B
Kotlin
Vendored

package test
class MyClass: Test() {
}
fun test(m: MyClass) {
m.ac<caret>t {
}
}
// REF: (in test.Test).act(Action)