FIR IDE: move low level api testdata sources to the analysis directory
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class A {
|
||||
fun resolveMe() {
|
||||
receive(functionWithLazyBody())
|
||||
}
|
||||
|
||||
val x: Int = 10
|
||||
get() = field
|
||||
set(value) {
|
||||
field = value
|
||||
}
|
||||
|
||||
fun receive(value: String) {}
|
||||
|
||||
fun functionWithLazyBody(): String {
|
||||
return "42"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user