blob: 457e6f7fc1aad8d46d3a53a71ea1f06dec517400 [file] [log] [blame]
// RUN: %clang_cc1 -fms-extensions -Wno-invalid-token-paste %s -verify
// RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste %s | FileCheck %s
// RUN: %clang_cc1 -E -fms-extensions -Wno-invalid-token-paste -x assembler-with-cpp %s | FileCheck %s
#define foo a ## b ## = 0
int foo;
// CHECK: int ab = 0;