commit | 9c405e1bca58ef1770adf991d283c3521185f062 | [log] [tgz] |
---|---|---|
author | Artem Kobzar <artem.kobzar@jetbrains.com> | Thu Oct 26 17:28:05 2023 +0200 |
committer | Artem Kobzar <artem.kobzar@jetbrains.com> | Thu Oct 26 17:28:05 2023 +0200 |
tree | a8815c8fb1ea2e3e7df5d6f8538f8e62163aa7e0 | |
parent | 48708597c41d13712e690b79780c0c2d94ce31da [diff] |
Fix K1 diagnostic test
diff --git a/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt b/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt index dcb4984..0a0cfc8 100644 --- a/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt +++ b/compiler/testData/diagnostics/testsWithJsStdLib/export/wrongExportedDeclaration.kt
@@ -25,7 +25,7 @@ @JsExport interface InterfaceWithCompanion { - companion <!WRONG_EXPORTED_DECLARATION("companion object inside exported interface")!>object<!> { + companion object { fun foo() = 42 } }