brintos

brintos / llvm-project-archived public Read only

0
0
Text · 282 B · 2993b35 Raw
15 lines · c
1// RUN: %clang_cc1 -verify %s2 3void test1(void)4{5  #pragma clang __debug captured x // expected-warning {{extra tokens at end of #pragma clang __debug captured directive}}6  {7  }8}9 10void test2(void)11{12  #pragma clang __debug captured13  int x; // expected-error {{expected '{'}}14}15