Minor: add Suppress usage to CONFLICTING_JVM_DECLARATIONS test

Related to KT-54366
This commit is contained in:
Mikhail Glukhikh
2022-10-14 09:20:52 +02:00
committed by Space Team
parent 69a4de0461
commit 185e74fd26
2 changed files with 2 additions and 7 deletions
@@ -2,6 +2,7 @@ class Foo {
val x: Int
get() = 42
@Suppress("CONFLICTING_JVM_DECLARATIONS")
fun getX() = 42
@JvmName("getX")