diff --git a/idea/testData/editor/quickDoc/DeprecationWithReplaceInfo.kt b/idea/testData/editor/quickDoc/DeprecationWithReplaceInfo.kt index a53b271040e..077f4b95deb 100644 --- a/idea/testData/editor/quickDoc/DeprecationWithReplaceInfo.kt +++ b/idea/testData/editor/quickDoc/DeprecationWithReplaceInfo.kt @@ -3,4 +3,5 @@ fun lol() { println("lol") } -//INFO:
@Deprecated public fun lol(): Unit defined in root package in file DeprecationWithReplaceInfo.kt
Deprecated:
lol no more mainstream
Replace with:
kek()
+//INFO:
DeprecationWithReplaceInfo.kt
@Deprecated(message = "lol no more mainstream", replaceWith = ReplaceWith(expression = "kek()", imports = {})) +//INFO: public fun lol(): Unit

Deprecated:

lol no more mainstream

Replace with:

kek()