Files
2016-10-28 15:30:22 +03:00

13 lines
285 B
Kotlin
Vendored

package com.myapp
import android.app.Activity
import android.content.Context
import android.view.View
class MyActivity: Activity() {
inner class SubView constructor(context: Context): View(context) {
fun test() {
val b = "some <caret>string"
}
}
}