diff --git a/compiler/testData/diagnostics/wasmTests/jsInterop/types.kt b/compiler/testData/diagnostics/wasmTests/jsInterop/types.kt index c66b2bb1337..9e277058bec 100644 --- a/compiler/testData/diagnostics/wasmTests/jsInterop/types.kt +++ b/compiler/testData/diagnostics/wasmTests/jsInterop/types.kt @@ -102,3 +102,10 @@ external fun < @JsExport fun exported(x: Any): Any = x + +typealias EI_alias = EI +typealias Any_alias = Any +external fun fooAlias( + ei: EI_alias, + any: Any_alias, +)