blob: 6bba911aac934d64f9fc8354746459d0f34acb84 [file] [log] [blame]
Dmitri Gribenko1255e1b2012-06-27 16:05:49 +00001// RUN: c-index-test -test-load-source all %s | FileCheck %s
2// RUN: %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -check-prefix=ERR %s
3
Dmitri Gribenkod558b522012-06-28 01:38:21 +00004// CHECK: annotate-comments-unterminated.c:9:5: VarDecl=x:{{.*}} RawComment=[/** Aaa. */]{{.*}} BriefComment=[Aaa.]
5// CHECK: annotate-comments-unterminated.c:11:5: VarDecl=y:{{.*}} RawComment=[/**< Bbb. */]{{.*}} BriefComment=[Bbb.]
Dmitri Gribenko1255e1b2012-06-27 16:05:49 +00006// CHECK-ERR: error: unterminated
7
8/** Aaa. */
9int x;
10
11int y; /**< Bbb. */
12/**< Ccc.
13 * Ddd.