[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-union-template.cpp
blobd9219fcba99e45923f583c4341fc47e178c0662c
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.
5 namespace PR15637 {
6 template <typename T> union Value { int a; };
7 void g(float value) {
8 Value<float> tempValue;
10 Value<float> f;
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"