FIR IDE: move analysis api fir testdata to the analysis directory
This commit is contained in:
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
interface IFace<T> {
|
||||
fun getStatus(arg: T): Boolean
|
||||
}
|
||||
class Some
|
||||
private fun resolve(): IFace<Some> {
|
||||
object : IFace<Some> {
|
||||
constructor()
|
||||
override fun getStatus(arg: Some): Boolean
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user