mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
9 lines
126 B
Kotlin
Vendored
9 lines
126 B
Kotlin
Vendored
package test
|
|
|
|
interface A {
|
|
internal fun f() : Int
|
|
internal val v : Int
|
|
public var p : Int
|
|
internal set
|
|
}
|