Files
kotlin/compiler/testData/diagnostics/tests/classObjects/resolveFunctionInsideClassObject.kt
Nikolay Krasko 75c887048e Drop AbstractLazyResolveRecursiveComparingTest test
Test data from compiler/testData/lazyResolve/ was moved to diagnostics tests
2014-12-03 14:08:23 +03:00

9 lines
196 B
Kotlin

package test
class Test {
fun test(): Int = 12
class object {
val a = <!INACCESSIBLE_OUTER_CLASS_EXPRESSION!>test()<!> // Check if resolver will be able to infer type of a variable
}
}