• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang -flimit-debug-info -emit-llvm -g -S %s -o - | FileCheck %s
2 
3 // Check that this pointer type is TC<int>
4 // CHECK: !10} ; [ DW_TAG_pointer_type
5 // CHECK-NEXT: !10 ={{.*}}"TC<int>"
6 
7 template<typename T>
8 class TC {
9 public:
TC(const TC &)10   TC(const TC &) {}
TC()11   TC() {}
12 };
13 
14 TC<int> tci;
15 
16