David Blaikie | 4f3b736 | 2019-06-17 19:40:52 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -std=c++14 -debug-info-kind=limited -emit-llvm -o - | FileCheck %s |
2 | |||||
3 | // CHECK: ![[empty:[0-9]+]] = !{} | ||||
4 | |||||
5 | // CHECK: distinct !DICompositeType(tag: DW_TAG_structure_type, name: "B", | ||||
6 | // CHECK-SAME: elements: ![[empty]] | ||||
7 | |||||
8 | struct B { | ||||
9 | template <typename... e> | ||||
10 | static const int d = 0; | ||||
11 | template <typename e> | ||||
12 | static const auto d<e> = d<e, e>; | ||||
13 | } c; |