mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
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;
|
|
}
|