Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineClasses
/
fieldNameClash.kt
blob: 815e2eabf91cb4295f54c3823a5e7fa78bec44d2 [
file
] [
log
] [
blame
]
inline
class
Z
(
val s
:
String
)
{
val
Int
.
s
:
Int
get
()
=
42
}
fun box
():
String
{
if
(
Z
(
"a"
).
toString
()
==
"Z(s=a)"
)
return
"OK"
return
"Fail"
}