1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited -triple x86_64-linux-gnu %s -o - | FileCheck %s
3 // Make sure that the union type has template parameters.
6 template <typename T
> union Value
{ int a
; };
8 Value
<float> tempValue
;
13 // CHECK: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
14 // CHECK-SAME: templateParams: [[TTPARAM:![0-9]+]]
15 // CHECK-SAME: identifier: "_ZTSN7PR156375ValueIfEE"
16 // CHECK: [[TTPARAM]] = !{[[PARAMS:.*]]}
17 // CHECK: [[PARAMS]] = !DITemplateTypeParameter(name: "T"