Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
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