compiler/testData/diagnostics/wasmDiagnosticsKlibTests/wasmExport/sameNamesOnlyOneExportedNoClash.kt (10 lines of code) (raw):
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
// FILE: A.kt
@file:Suppress("OPT_IN_USAGE")
package a
import kotlin.wasm.*
@WasmExport fun test() = 1
// FILE: B.kt
@file:Suppress("OPT_IN_USAGE")
package b
fun test() = 2
// FILE: C.kt
@file:Suppress("OPT_IN_USAGE")
package c
fun test() = 3