aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/cond2.C18
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 0000000..b5cd961
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.pt/cond2.C
@@ -0,0 +1,18 @@
+// Build don't link:
+// 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>();
+