1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
// RUN: %clang -fsyntax-only -Wdocumentation %s
// foo \
#define blork 32
// GH62054
/**<*\
/
//expected-warning@-2 {{escaped newline between}} \
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
/**<*\
/
//expected-warning@-2 {{escaped newline between}} \
//expected-warning@-2 {{backslash and newline separated by space}} \
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
/*<*\
/
//expected-warning@-2 {{escaped newline between}} \
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
/*<*\
/
//expected-warning@-2 {{escaped newline between}} \
//expected-warning@-2 {{backslash and newline separated by space}} \
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
/\
*<**/
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
/\
/<*
//expected-warning@-2 {{line splicing in Doxygen comments are not supported}}
|