Mercurial > hg > CbC > GCC_original
view gcc/testsuite/c-c++-common/missing-close-symbol.c @ 16:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
line wrap: on
line source
/* { dg-options "-fdiagnostics-show-caret" } */ /* Verify that the C/C++ frontends show the pertinent opening symbol when a closing symbol is missing. */ /* Verify that, when they are on the same line, that the opening symbol is shown as a secondary range within the main diagnostic. */ void test_static_assert_same_line (void) { _Static_assert(sizeof(int) >= sizeof(char), "msg"; /* { dg-error "expected '\\)' before ';' token" } */ /* { dg-begin-multiline-output "" } _Static_assert(sizeof(int) >= sizeof(char), "msg"; ~ ^ ) { dg-end-multiline-output "" } */ } /* Verify that, when they are on different lines, that the opening symbol is shown via a secondary diagnostic. */ void test_static_assert_different_line (void) { _Static_assert(sizeof(int) >= sizeof(char), /* { dg-message "to match this '\\('" } */ "msg"; /* { dg-error "expected '\\)' before ';' token" } */ /* { dg-begin-multiline-output "" } "msg"; ^ ) { dg-end-multiline-output "" } */ /* { dg-begin-multiline-output "" } _Static_assert(sizeof(int) >= sizeof(char), ^ { dg-end-multiline-output "" } */ }