blob: 6d292ec1e3e00e2cc7fd4b32b0f80d9826c8eda1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Test this without pch.
// RUN: %clang_cc1 -include %s -emit-llvm -o - %s
// Test with pch.
// RUN: %clang_cc1 -emit-pch -o %t %s
// RUN: %clang_cc1 -include-pch %t -emit-llvm -o - %s
#ifndef HEADER
#define HEADER
template<typename T, typename... Types>
struct static_variant {
alignas(Types...) T storage[10];
};
#else
struct A {
static_variant<int> a;
};
struct B {
static_variant<A> _b;
};
#endif
|