Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cli
/
jvm
/
conflictingJvmDeclarations.kt
blob: 5a8a0455aeaf5d3997e6f8424630e65da8fb3a27 [
file
]
class
Foo
{
val x
:
Int
get
()
=
42
@Suppress
(
"CONFLICTING_JVM_DECLARATIONS"
)
fun getX
()
=
42
@JvmName
(
"getX"
)
fun getY
()
=
42
}