bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/ms-lookup-template-base-classes.cpp
2025-02-14 19:21:04 +01:00

15 lines
274 B
C++

// RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm -fms-compatibility %s -o -
// CHECK that we don't crash.
struct Base {
void b(int, int);
};
template <typename Base> struct Derived : Base {
void d() { b(1, 2); }
};
void use() {
Derived<Base> d;
d.d();
}