13 lines
159 B
Plaintext
13 lines
159 B
Plaintext
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
unit()
|
|
}
|
|
|
|
public annotation class P
|
|
}
|
|
|
|
private fun unit() {
|
|
[MyClass.P] val t: Int = 1
|
|
t
|
|
} |