From 1e862f2fc05c9d01d4d9c00de5d1a4235ff85a9d Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 9 Sep 2015 14:54:19 +0200 Subject: render annotations with @; render only @MustBeDocumented annotations; render all modifiers --- test/data/format/annotationParams.kt | 2 +- test/data/format/annotationParams.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test/data/format') diff --git a/test/data/format/annotationParams.kt b/test/data/format/annotationParams.kt index ee5b524a..f259a740 100644 --- a/test/data/format/annotationParams.kt +++ b/test/data/format/annotationParams.kt @@ -1 +1 @@ -inlineOptions(InlineOption.LOCAL_CONTINUE_AND_BREAK) fun f() {} +@JvmName("FFF") fun f() {} diff --git a/test/data/format/annotationParams.md b/test/data/format/annotationParams.md index 80fe52cf..8cdd6e96 100644 --- a/test/data/format/annotationParams.md +++ b/test/data/format/annotationParams.md @@ -3,6 +3,6 @@ # f -`inlineOptions([InlineOption.LOCAL_CONTINUE_AND_BREAK]) fun f(): Unit` +`@JvmName("FFF") fun f(): Unit` -- cgit