14 lines
150 B
Plaintext
Vendored
14 lines
150 B
Plaintext
Vendored
enum class E {
|
|
E1;
|
|
|
|
fun test() {
|
|
bar(foo)
|
|
}
|
|
|
|
fun bar(s: String) {}
|
|
|
|
companion object {
|
|
const val foo = ""
|
|
}
|
|
}
|