aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool4.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/bool4.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/bool4.C10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/bool4.C b/gcc/testsuite/g++.old-deja/g++.jason/bool4.C
new file mode 100644
index 00000000000..36a2180c927
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.jason/bool4.C
@@ -0,0 +1,10 @@
+// Test for allowing conversion to bool.
+
+struct A { };
+
+main ()
+{
+ bool b = (void*)0;
+ b = (int A::*)0;
+ b = (int (A::*)())0;
+}