]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Preprocessor/pragma-captured.c
Vendor import of clang tags/RELEASE_33/final r183502 (effectively, 3.3
[FreeBSD/FreeBSD.git] / test / Preprocessor / pragma-captured.c
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 }