bolt/deps/llvm-18.1.8/clang/test/SemaCXX/PR41139.cpp
2025-02-14 19:21:04 +01:00

15 lines
259 B
C++

// RUN: %clang_cc1 -fsyntax-only -std=c++17 -verify %s
// expected-no-diagnostics
// This test should not crash.
int f1( unsigned ) { return 0; }
template <class R, class... Args>
struct S1 {
S1( R(*f)(Args...) ) {}
};
int main() {
S1 s1( f1 );
}