Files
kotlin-fork/idea/testData/resolve/resolveModeComparison/Classes.kt
T
Pavel Kirpichenkov 79d7babb57 Add test checking file annotations resolution
#KT-37219 Fixed
2020-07-14 17:07:42 +03:00

21 lines
282 B
Kotlin
Vendored

class Foo(val prop: String) {
class Inner {
val boo = 42
fun inner() {}
}
fun first(arg1: String) {
<caret>arg1
}
fun second(arg2: Int) {
arg2
}
}
class Bar(val baz: Int) {
fun bee() {
val local = "abc"
}
}