blob: e120e42b8b5fbcaa2e95e58879cc6a8b28691c61 [file] [log] [blame]
Dmitri Gribenko66b6bb12019-04-10 20:25:07 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++17 -verify %s
2
3// expected-no-diagnostics
4
5// This test should not crash.
6int f1( unsigned ) { return 0; }
7
8template <class R, class... Args>
9struct S1 {
10 S1( R(*f)(Args...) ) {}
11};
12
13int main() {
14 S1 s1( f1 );
15}