mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
15 lines
297 B
Kotlin
Vendored
15 lines
297 B
Kotlin
Vendored
package test
|
|
|
|
import android.app.Activity
|
|
import android.os.Bundle
|
|
import java.io.File
|
|
import kotlinx.android.synthetic.main.layout.*
|
|
|
|
public class MyActivity : Activity() {
|
|
override fun onCreate(savedInstanceState: Bundle?) {}
|
|
val button = login<caret>
|
|
|
|
fun f() = login.toString()
|
|
}
|
|
|