Make FIR multi-module tests from IDE regular FIR compiler resolve tests
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
// FILE: Derived.kt
|
||||
|
||||
class Derived : Some()
|
||||
|
||||
// FILE: Some.java
|
||||
|
||||
public class Some implements Strange {
|
||||
public Object foo() {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: Strange.kt
|
||||
|
||||
interface Strange<out T> {
|
||||
fun foo(): T
|
||||
}
|
||||
Reference in New Issue
Block a user