From 552408e887928feaeb1525493681b5e31cd6caf2 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Fri, 27 Sep 2019 16:30:50 +0300 Subject: [PATCH] Minor: update test data for quick doc with deprecated annotation --- idea/testData/editor/quickDoc/DeprecationWithReplaceInfo.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()