Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/publishedApi/generic.kt
T
2016-12-09 11:55:16 +01:00

18 lines
305 B
Kotlin
Vendored

// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
annotation class Z
open class ABase<T> {
@Z
protected fun test(p: T) {
}
fun param(): T {
return null!!
}
inline fun test() {
{
<caret>test(param())
}()
}
}