summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/PrecompileHeaders/use_pch.cxx
blob: caf115bee9050abc447bc8970ea1abf46342ecb5 (plain)
1
2
3
4
5
6
7
8
9
#include "cxx_pch.h"
#ifndef CXX_PCH
#  error "CXX PCH not included in CXX source."
#endif
extern "C" int no_pch(void);
int main()
{
  return no_pch();
}