Add test checking file annotations resolution

#KT-37219 Fixed
This commit is contained in:
Pavel Kirpichenkov
2020-07-14 12:52:22 +03:00
parent 36a46482c5
commit 79d7babb57
11 changed files with 316 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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"
}
}