[ULC] Add support of const fields to multifile facade

This commit is contained in:
Igor Yakovlev
2020-09-04 14:11:25 +03:00
parent 309bf49a83
commit 97ac86273a
3 changed files with 10 additions and 5 deletions

View File

@@ -5,4 +5,6 @@ fun foo() = 42
val x = 24
private fun privateFoo(): Int = 3
private fun privateFoo(): Int = 3
const val x1 = 42

View File

@@ -3,4 +3,6 @@
fun bar() = 24
val y = 24
val y = 24
const val y1 = 42