[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-codeview-template-type.cpp
blobbe371904ac578a0ff714291aa206d5103666cbb4
1 // RUN: %clang -std=c++11 -g -target x86_64-windows-msvc -S -emit-llvm -o - %s | FileCheck %s
3 template <unsigned N>
4 void foo() {
7 void instantiate_foo() {
8 foo<10>();
9 // CHECK: foo<10>
10 foo<true>();
11 // CHECK: foo<1>