xref: /aosp_15_r20/external/clang/test/Index/annotate-comments-unterminated.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: c-index-test -test-load-source all %s | FileCheck %s
2*67e74705SXin Li // RUN: not %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-ERR %s
3*67e74705SXin Li 
4*67e74705SXin Li // CHECK: annotate-comments-unterminated.c:9:5: VarDecl=x:{{.*}} RawComment=[/** Aaa. */]{{.*}} BriefComment=[Aaa.]
5*67e74705SXin Li // CHECK: annotate-comments-unterminated.c:11:5: VarDecl=y:{{.*}} RawComment=[/**< Bbb. */]{{.*}} BriefComment=[Bbb.]
6*67e74705SXin Li // CHECK-ERR: error: unterminated
7*67e74705SXin Li 
8*67e74705SXin Li /** Aaa. */
9*67e74705SXin Li int x;
10*67e74705SXin Li 
11*67e74705SXin Li int y; /**< Bbb. */
12*67e74705SXin Li /**< Ccc.
13*67e74705SXin Li  * Ddd.
14