Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
twoAnnotatedExtensionPropertiesWithoutBackingFields.kt
blob: 678b82c784e20f7c98f6a772018259ac328a83d4 [
file
]
annotation
class
Anno
@Anno
val
Int
.
foo
:
Int
get
()
=
this
@Anno
val
String
.
foo
:
Int
get
()
=
42
fun box
()
=
if
(
42.foo
==
42
&&
"OK"
.
foo
==
42
)
"OK"
else
"Fail"