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