[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
interface MySam {
|
||||
fun run(x: String): Int
|
||||
}
|
||||
|
||||
class A {
|
||||
fun bar(x: String): Int {}
|
||||
}
|
||||
|
||||
fun foo(x: MySam) {}
|
||||
|
||||
fun main() {
|
||||
val a = A()
|
||||
foo(a::bar)
|
||||
}
|
||||
Reference in New Issue
Block a user