brintos

brintos / llvm-project-archived public Read only

0
0
Text · 239 B · be2a62b Raw
14 lines · c
1// RUN: %clang_cc1 -E %s | FileCheck %s2 3// Test pragma clang __debug captured, for Captured Statements4 5void test1()6{7  #pragma clang __debug captured8  {9  }10// CHECK: void test1()11// CHECK: {12// CHECK: #pragma clang __debug captured13}14