• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %s -verify -std=c++11 %s
3 
4 // Test with pch.
5 // RUN: %clang_cc1 -std=c++11 -emit-pch -o %t %s
6 // RUN: %clang_cc1 -include-pch %t -verify -std=c++11 %s
7 
8 #ifndef HEADER
9 #define HEADER
10 
11 template<typename T>
12 class New {
13   New(const New&);
14 
15 public:
clone()16   New *clone() {
17     return new New(*this);
18   }
19 };
20 
21 #else
22 
clone_new(New<int> * n)23 New<int> *clone_new(New<int> *n) {
24   return n->clone();
25 }
26 
27 #endif
28