Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotationAsDefaultParameter.kt
blob: 9958b3741e3e43fe2d8e01ddf8f6ccfcd13223fa [
file
]
// FIR_IDENTICAL
annotation
class
Base
(
val x
:
Int
)
annotation
class
UseBase
(
val b
:
Base
=
Base
(
0
))
@UseBase
class
My