mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
224 B
Kotlin
Vendored
12 lines
224 B
Kotlin
Vendored
package com.myapp
|
|
|
|
import android.app.Activity
|
|
import android.content.Context
|
|
|
|
class MyActivity: Activity() {
|
|
class Helper {
|
|
fun test(context: Context) {
|
|
val b = "some <caret>string"
|
|
}
|
|
}
|
|
} |