blob: 9ddd936bf8a1ca9965eecd39c3e7f67751032907 [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>
Eric Christopherdadbd472013-10-04 17:08:47 +00004// CHECK: ![[LINE:[0-9]+]] = {{.*}}"TC<int>"
5// CHECK: ![[LINE]]} ; [ DW_TAG_pointer_type ]{{.*}}[from TC<int>]
Devang Patelef8857d2011-10-28 21:12:13 +00006
7template<typename T>
8class TC {
9public:
10 TC(const TC &) {}
11 TC() {}
12};
13
14TC<int> tci;