From 4f18e4776ec50ed8b6d59ec260b9653087c26d31 Mon Sep 17 00:00:00 2001 From: Benjamin Kosnik Date: Fri, 4 Dec 1998 19:12:58 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r24095 --- .../g++.old-deja/g++.benjamin/13478.C | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 gcc/testsuite/g++.old-deja/g++.benjamin/13478.C diff --git a/gcc/testsuite/g++.old-deja/g++.benjamin/13478.C b/gcc/testsuite/g++.old-deja/g++.benjamin/13478.C new file mode 100644 index 00000000000..97256ed7643 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.benjamin/13478.C @@ -0,0 +1,36 @@ +// 981203 bkoz +// g++/13478 +// Build don't link: + +class A {}; +class AData {}; + +typedef void (A::* hand) (void); + +struct hand_table { + const int data1; + const hand data2; +}; + +class Agent : public A { +public: + enum { first = 1, last }; +protected: + static const hand_table table_1[]; + static const AData table_2; +private: + void foo (void); +}; + +const hand_table Agent::table_1[] = +{ + {0, &Agent::table_2}, + {first, &Agent::foo}, + {last, &(hand)Agent::foo} // ERROR - // ERROR - +}; // ERROR - // ERROR - + + + + + + -- 2.30.2