a61b3ec461
There'll be an auto-generated test over this directory
12 lines
280 B
Kotlin
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;
|
|
}
|