diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/ptrmem10.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/ptrmem10.C | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/ptrmem10.C b/gcc/testsuite/g++.old-deja/g++.other/ptrmem10.C new file mode 100644 index 000000000..f6f97d9c0 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/ptrmem10.C @@ -0,0 +1,11 @@ +// { dg-do run } +// Test that we properly convert a constant ptm to bool. + +class A { }; + +int main() +{ + int A::*const p = 0; + if (p) + return 1; +} |