c7d7d903cd
Only the WithoutJavac version for now, because the other one ignores javac errors.
10 lines
129 B
Kotlin
Vendored
10 lines
129 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
package test
|
|
|
|
interface Trait {
|
|
fun simple() {
|
|
}
|
|
|
|
fun generic(list: List<String>) {
|
|
}
|
|
} |