1 // The 1 and # should not go on the same line.
2 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
3 // CHECK-NOT: 1{{.*}}#
4 // CHECK: {{^1$}}
5 // CHECK-NOT: 1{{.*}}#
6 // CHECK: {{^ #$}}
7 // CHECK-NOT: 1{{.*}}#
8 1
9 #define EMPTY
10 EMPTY #
11
12