Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
serialization
/
klib
/
delegationToInterfaceWithDeprecation_dep.kt
blob: 8a7a3eddd626fe5d02bd5859512769557a927bc1 [
file
]
package
test
interface
Some
{
@Deprecated
(
"some"
+
"message"
,
ReplaceWith
(
"some"
+
"replacement"
),
DeprecationLevel
.
WARNING
)
fun foo
()
}