mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
[ULC] Add support of const fields to multifile facade
This commit is contained in:
@@ -5,4 +5,6 @@ fun foo() = 42
|
||||
|
||||
val x = 24
|
||||
|
||||
private fun privateFoo(): Int = 3
|
||||
private fun privateFoo(): Int = 3
|
||||
|
||||
const val x1 = 42
|
||||
@@ -3,4 +3,6 @@
|
||||
|
||||
fun bar() = 24
|
||||
|
||||
val y = 24
|
||||
val y = 24
|
||||
|
||||
const val y1 = 42
|
||||
Reference in New Issue
Block a user