Home | History | Annotate | Download | only in Preprocessor
      1 // RUN: %clang_cc1 -E -dD %s | FileCheck %s
      2 // PR7818
      3 
      4 // CHECK: # 1 "{{.+}}.c"
      5 #define X 3
      6 // CHECK: #define X 3
      7 #undef X
      8 // CHECK: #undef X
      9