26 lines
243 B
Kotlin
Vendored
26 lines
243 B
Kotlin
Vendored
// test.C
|
|
package test
|
|
|
|
annotation class AllOpen
|
|
|
|
@AllOpen
|
|
class C {
|
|
fun f() {}
|
|
|
|
fun g() {}
|
|
|
|
val p: Int
|
|
|
|
class D {
|
|
fun z() {
|
|
|
|
}
|
|
}
|
|
|
|
@AllOpen
|
|
class H {
|
|
fun j() {}
|
|
}
|
|
}
|
|
|
|
// COMPILATION_ERRORS |