diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/cond2.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.pt/cond2.C | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/cond2.C b/gcc/testsuite/g++.old-deja/g++.pt/cond2.C new file mode 100644 index 000000000..37bc1466a --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/cond2.C @@ -0,0 +1,18 @@ +// { dg-do assemble } +// Origin: Mark Mitchell <mark@codesourcery.com> + +struct S +{ + S (int); + operator bool () const; +}; + +template <class T> +void f () +{ + if (const S &s = 3) { + } +} + +template void f<int>(); + |