blob: ecd387870549c0c232eadd63198edc99a824711f [file] [log] [blame]
Eric Christopher3de00ce2012-06-05 18:16:22 +00001// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin -std=c++11 %s -o - | FileCheck %s
2
3class A {
4};
5
6template <typename T> class B {
7 T t;
8};
9
10A a;
11B<int> b;
12
13// Check that no subprograms are emitted into debug info.
14// CHECK-NOT: [ DW_TAG_subprogram ]