Make FIR multi-module tests from IDE regular FIR compiler resolve tests
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
// FILE: A.java
|
||||
|
||||
public class A<T> {
|
||||
public T foo(T t) {
|
||||
return t;
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: simpleFakeOverride.kt
|
||||
|
||||
|
||||
class Some
|
||||
|
||||
class B : A<Some>() {
|
||||
fun test() {
|
||||
foo(Some())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user