760fb668bb
Now lazy resolve atomic element is a file (declaration-level resolve) or a callable declaration (expression-level resolve) #KT-24351 In Progress
11 lines
122 B
Kotlin
Vendored
11 lines
122 B
Kotlin
Vendored
fun main() {
|
|
<caret>callMe()
|
|
foo()
|
|
bar(1, 2)
|
|
}
|
|
|
|
fun foo() {
|
|
val y = 2.0
|
|
}
|
|
|
|
fun bar(x: Int, y: Int) = x + y |