Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
deprecated
/
deprecationWithComplexMessage.kt
blob: 7367a259b3beb0b0fb0babba091947322ea00595 [
file
]
// FIR_IDENTICAL
// RENDER_DIAGNOSTICS_FULL_TEXT
const
val MSG
=
"Hello"
+
" World"
@Deprecated
(
MSG
)
fun deprecated
()
{}
fun test
()
{
<!
DEPRECATION
!>
deprecated
<!>()
}