blob: 9f73c95c541e931403d80c0906e7d4a5ce247d6d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// RUN: %clang_cc1 -emit-pch -o %t %s
// RUN: %clang_cc1 -error-on-deserialized-decl S1_method -include-pch %t -emit-llvm-only %s
#ifndef HEADER
#define HEADER
// Header.
struct S1 {
void S1_method(); // This should not be deserialized.
virtual void S1_keyfunc();
};
#else
// Using the header.
void test(S1*) {
}
#endif
|