warning for access to private top-level declarations from another file

This commit is contained in:
Michael Nedzelsky
2015-09-04 03:01:20 +03:00
parent 778ac7f25c
commit a59f14eede
9 changed files with 191 additions and 2 deletions
@@ -9,7 +9,7 @@ private val a = 1
package p
val b = a // same package, same module
val b = <!ACCESS_TO_PRIVATE_TOP_LEVEL_FROM_ANOTHER_FILE!>a<!> // same package, same module
// MODULE: m2(m1)
// FILE: c.kt