• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin -std=c++11 %s -o - | FileCheck %s
2 
3 class A {
4 };
5 
6 template <typename T> class B {
7   T t;
8 };
9 
10 A a;
11 B<int> b;
12 
13 // Check that no subprograms are emitted into debug info.
14 // CHECK-NOT: [ DW_TAG_subprogram ]
15