mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
16 lines
294 B
Kotlin
Vendored
16 lines
294 B
Kotlin
Vendored
abstract class A {
|
|
private val<!SYNTAX!><!>
|
|
// private is parsed as val's identifier
|
|
private fun foo1() {
|
|
}
|
|
|
|
private val<!SYNTAX!><!>
|
|
protected abstract fun foo2()
|
|
|
|
private val<!SYNTAX!><!>
|
|
fun foo3() {
|
|
}
|
|
|
|
private val private<!SYNTAX!><!> fun foo() {}
|
|
}
|