d17044515f
Common metadata compiler now reports compilation errors. Disable tests that are not yet supported or should be skipped as JVM-specific. KTIJ-28668
19 lines
375 B
Kotlin
Vendored
19 lines
375 B
Kotlin
Vendored
/* Unavailable @JvmName */
|
|
// KNM_K2_IGNORE
|
|
// KNM_FE10_IGNORE
|
|
|
|
@file:[JvmName("MultifileClass") JvmMultifileClass]
|
|
package test
|
|
|
|
fun p1Fun() {}
|
|
fun String.p1ExtFun() {}
|
|
fun p1ExprFun(): Int = 0
|
|
fun p1FunWithParams(x: Int): Int { return x }
|
|
|
|
val p1Val: Int = 0
|
|
val String.p1ExtVal: Int get() = 0
|
|
var p1Var: Int = 0
|
|
|
|
@Deprecated("deprecated")
|
|
const val annotatedConstVal = 42
|