blob: 796a80fd627f5d70c826fddbcaf5378157636c04 [file] [log] [blame]
Devang Patelef8857d2011-10-28 21:12:13 +00001// 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
7template<typename T>
8class TC {
9public:
10 TC(const TC &) {}
11 TC() {}
12};
13
14TC<int> tci;
15