diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/defarg3.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/defarg3.C | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/defarg3.C b/gcc/testsuite/g++.old-deja/g++.other/defarg3.C new file mode 100644 index 000000000..34709613c --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/defarg3.C @@ -0,0 +1,9 @@ +// { dg-do assemble } +// Origin: Mark Mitchell <mark@codesourcery.com> + +int* hp; +int* jp; + +void f (int *ip, int kp = hp - jp) +{ +} |