Files
kotlin-fork/plugins/android-compiler-plugin/testData/codegen/android/fragment/CustomWidgets.kt
T
2015-03-13 15:46:42 +03:00

9 lines
184 B
Kotlin
Vendored

package org.my.cool
import android.widget.Button
import android.content.Context
class MyButton(ctx: Context): Button(ctx) {
override fun toString(): String {return "MyButton"}
}