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