You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
310 B
10 lines
310 B
// RUN: %clang_cc1 -fms-extensions -x c++-header -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -fms-extensions -include-pch %t -fsyntax-only %s -emit-llvm -o - | FileCheck %s
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
struct _GUID {};
|
|
const _GUID &x = __uuidof(0);
|
|
// CHECK-DAG: @_GUID_00000000_0000_0000_0000_000000000000
|
|
#endif
|