mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
17 lines
334 B
Kotlin
Vendored
17 lines
334 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
class Test(val prop: String) {
|
|
|
|
companion object {
|
|
public const val prop : String = "CO";
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// TESTED_OBJECT_KIND: property
|
|
// TESTED_OBJECTS: Test, prop$1
|
|
// FLAGS: ACC_PRIVATE, ACC_FINAL
|
|
|
|
// TESTED_OBJECT_KIND: property
|
|
// TESTED_OBJECTS: Test, prop
|
|
// FLAGS: ACC_STATIC, ACC_PUBLIC, ACC_FINAL |