18fcf0e78SDmitri Gribenko // RUN: c-index-test -test-load-source all %s | FileCheck %s 2*19ae1175STim Northover // RUN: not %clang_cc1 -fsyntax-only %s 2>&1 | FileCheck -check-prefix=CHECK-ERR %s 38fcf0e78SDmitri Gribenko 40743f946SDmitri Gribenko // CHECK: annotate-comments-unterminated.c:9:5: VarDecl=x:{{.*}} RawComment=[/** Aaa. */]{{.*}} BriefComment=[Aaa.] 50743f946SDmitri Gribenko // CHECK: annotate-comments-unterminated.c:11:5: VarDecl=y:{{.*}} RawComment=[/**< Bbb. */]{{.*}} BriefComment=[Bbb.] 68fcf0e78SDmitri Gribenko // CHECK-ERR: error: unterminated 78fcf0e78SDmitri Gribenko 88fcf0e78SDmitri Gribenko /** Aaa. */ 98fcf0e78SDmitri Gribenko int x; 108fcf0e78SDmitri Gribenko 118fcf0e78SDmitri Gribenko int y; /**< Bbb. */ 128fcf0e78SDmitri Gribenko /**< Ccc. 138fcf0e78SDmitri Gribenko * Ddd. 14