Skip to content

Commit 8b2f10e

Browse files
committed
fixup! update cross-project-tests
1 parent 59fb0bd commit 8b2f10e

File tree

2 files changed

+6054
-5745
lines changed

2 files changed

+6054
-5745
lines changed

cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ template<decltype(ns::AnonEnum1)>
185185
void f10() {
186186
}
187187

188+
template <typename T, T V> void f11() {}
189+
188190
int main() {
189191
struct { } A;
190192
auto L = []{};
@@ -325,8 +327,10 @@ int main() {
325327
f1<void(t8)>();
326328
operator_not_really<int>();
327329
t12 v4;
328-
f1<_BitInt(3)>();
329-
f1<const unsigned _BitInt(5)>();
330+
f11<_BitInt(3), 2>();
331+
f11<const unsigned _BitInt(5), 2>();
332+
f11<_BitInt(65), 2>();
333+
f11<const unsigned _BitInt(65), 2>();
330334
f1<void(t1<>, t1<>)>();
331335
f1<int t1<>::*>();
332336
void fcc() __attribute__((swiftcall));

0 commit comments

Comments
 (0)