FIR/LC: fix syntax error in import alias test

This commit is contained in:
Jinseong Jeon
2021-11-03 10:02:29 -07:00
committed by Ilya Kirillov
parent 348403b1f3
commit 8989378b02
2 changed files with 7 additions and 3 deletions
@@ -1,4 +1,5 @@
public final class ImportAliasesKt /* ImportAliasesKt*/ {
public static final void foo();// foo()
@kotlin.jvm.JvmName(name = "notFoo")
public static final void notFoo();// notFoo()
}
}
@@ -1,3 +1,6 @@
import JS = kotlin.jvm.JvmName
//CHECK_BY_JAVA_FILE
import kotlin.jvm.JvmName as JS
@JS("notFoo") fun foo() {}
// FIR_COMPARISON