Analysis API: add test for KtDiagnosticsProvider

This commit is contained in:
Tianyu Geng
2021-11-16 04:26:45 +01:00
committed by TeamCityServer
parent cd3827ca2e
commit f197fc93db
18 changed files with 351 additions and 3 deletions
@@ -0,0 +1,9 @@
fun foo() {}
fun bar(s: String) {}
fun bar(f: () -> Unit) {}
fun test() {
foo(1)
bar(2)
bar("", 1)
bar()
}