FIR/LC: fix syntax error in import alias test
This commit is contained in:
committed by
Ilya Kirillov
parent
348403b1f3
commit
8989378b02
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user