Files
kotlin-fork/compiler/testData/codegen/regressions/kt2060.kt
T
Alex Tkachman 8012725d38 KT-2060 fix
2012-07-11 13:10:54 +03:00

12 lines
280 B
Kotlin

package testing; // There is no error if both files are in default package
public abstract class ClassWithInternals {
protected var some: Int = 0;
protected var someGetter: Int = 0
get() = 5
protected fun foo() : Int = 0
public abstract fun start() : Unit;
}