[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / debug-info-template-array.cpp
blob305327bbe09953fe4f5feef87a22f06ed783a9ea
1 // RUN: %clang -emit-llvm -g -S %s -o -
2 // PR13531
3 template <typename>
4 struct unique_ptr {
5 unique_ptr() {}
6 };
8 template <unsigned>
9 struct Vertex {};
11 void crash() // Asserts
13 unique_ptr<Vertex<2>[]> v = unique_ptr<Vertex<2>[]>();