summaryrefslogtreecommitdiffstats
path: root/test/PCH/uuidof.cpp
blob: 207a8dafee3b105e4111ad92aeebd89f8b160bac (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 -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