1 // RUN: %clang_cc1 -E %s | FileCheck %s
2 
3 // Test pragma clang __debug captured, for Captured Statements
4 
5 void test1()
6 {
7   #pragma clang __debug captured
8   {
9   }
10 // CHECK: void test1()
11 // CHECK: {
12 // CHECK: #pragma clang __debug captured
13 }
14