[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
interface Base {
|
||||
fun check()
|
||||
}
|
||||
|
||||
|
||||
class My {
|
||||
lateinit var delegate: Base
|
||||
|
||||
fun check() = delegate.check() // Should not resolve
|
||||
}
|
||||
Reference in New Issue
Block a user