mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
200 B
Kotlin
9 lines
200 B
Kotlin
package test
|
|
|
|
class Test {
|
|
fun test(): Int = 12
|
|
|
|
companion object {
|
|
val a = <!INACCESSIBLE_OUTER_CLASS_EXPRESSION!>test()<!> // Check if resolver will be able to infer type of a variable
|
|
}
|
|
} |