diff options
Diffstat (limited to 'test/Index/annotate-comments.cpp')
-rw-r--r-- | test/Index/annotate-comments.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Index/annotate-comments.cpp b/test/Index/annotate-comments.cpp index cb0630b739..59ffa88348 100644 --- a/test/Index/annotate-comments.cpp +++ b/test/Index/annotate-comments.cpp @@ -198,6 +198,11 @@ void isdoxy45(void); #define FOO void notdoxy46(void); +/// IS_DOXYGEN_START Aaa bbb +/// \param ccc +/// \returns ddd IS_DOXYGEN_END +void isdoxy47(int); + #endif // RUN: rm -rf %t @@ -265,4 +270,5 @@ void notdoxy46(void); // CHECK: annotate-comments.cpp:185:6: FunctionDecl=isdoxy44:{{.*}} BriefComment=[ IS_DOXYGEN_START Aaa bbb\n ccc.\n] // CHECK: annotate-comments.cpp:195:6: FunctionDecl=isdoxy45:{{.*}} BriefComment=[\n Ddd eee.\n Fff.\n] +// CHECK: annotate-comments.cpp:204:6: FunctionDecl=isdoxy47:{{.*}} BriefComment=[ IS_DOXYGEN_START Aaa bbb\n ] |