7 lines
154 B
Kotlin
Vendored
7 lines
154 B
Kotlin
Vendored
class Context(val project: Any?)
|
|
|
|
fun calculateResult(context: Context?) {
|
|
context!!
|
|
val project = <!DEBUG_INFO_SMARTCAST!>context<!>.project!!
|
|
}
|