Files
kotlin-fork/compiler/testData/cli/jvm/androidPlugin/androidApp.kt
T
2015-03-13 15:46:37 +03:00

9 lines
242 B
Kotlin

package android.app
public open class Activity {
public open fun findViewById([suppress("UNUSED_PARAMETER")] id: Int): android.view.View = null!!
}
public open class Fragment {
public open fun getView(): android.view.View = null!!
}