19 lines
229 B
Kotlin
Vendored
19 lines
229 B
Kotlin
Vendored
// MODULE: m1
|
|
// FILE: base.kt
|
|
|
|
package hello
|
|
|
|
class Hello(val msg: String)
|
|
|
|
class Test(val set: java.util.Set<*>)
|
|
|
|
// MODULE: m2(m1)
|
|
// FILE: user.kt
|
|
|
|
package test
|
|
|
|
import hello.Hello
|
|
|
|
fun foo(hello: Hello): String = hello.msg
|
|
|