11 lines
266 B
Kotlin
Vendored
11 lines
266 B
Kotlin
Vendored
// ERROR: Cannot access 'd': it is private in file
|
|
// ERROR: Cannot access 'b': it is private in file
|
|
// ERROR: Cannot access 'b': it is private in file
|
|
// ERROR: Cannot access 'd': it is private in file
|
|
package to
|
|
|
|
import a.b
|
|
import a.d
|
|
|
|
fun f(c: IntRange) = d + b
|