cb92990ed6
- Keep the test data under "native/native.tests/testData/klib/" dir - Rename tests from "klib contents" to "klib dump-metadata"
7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
object Obj {
|
|
const val O = "O"
|
|
val concat = "${O}K"
|
|
}
|
|
|
|
@Deprecated("${Obj.O}/{id}")
|
|
class Foo |