[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
interface A {
|
||||
fun <E> foo(a: E)
|
||||
}
|
||||
|
||||
interface B {
|
||||
fun <T> foo(b: T)
|
||||
}
|
||||
|
||||
interface C : A, B { // Warning here, this is correct
|
||||
}
|
||||
|
||||
fun test(c: C) {
|
||||
c.foo(a = 1)
|
||||
c.<!INAPPLICABLE_CANDIDATE!>foo<!>(b = 1)
|
||||
}
|
||||
Reference in New Issue
Block a user