diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/ptrmem1.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.brendan/ptrmem1.C | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/ptrmem1.C b/gcc/testsuite/g++.old-deja/g++.brendan/ptrmem1.C new file mode 100644 index 000000000..051448301 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.brendan/ptrmem1.C @@ -0,0 +1,21 @@ +// { dg-do assemble } +// GROUPS passed pointers-to-members +class my_class +{ +public: + typedef void func_type (int num); + my_class (int num, func_type* proc); + void dispatch (void); +private: + int _num; + func_type *_proc; +}; + +my_class::my_class (int num, func_type* proc) : _num(num), _proc(proc) +{ +} + +void my_class::dispatch (void) +{ + _proc(_num); +} |