aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/check-deserializations.cpp
blob: ea0398470dfc8b3732e22ec2e06ced9ce4398e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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.
};


#else
// Using the header.

void test(S1*) {
}

#endif