aboutsummaryrefslogtreecommitdiff
path: root/clang/test/PCH/uuidof.cpp
blob: baccd97ee6d8865c59d4042c0e5030e402d03675 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -fms-extensions -x c++-header -emit-pch -o %t %s
// RUN: %clang_cc1 -fms-extensions -include-pch %t %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