Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / inherit / ptrmem3.C
blob0c06c65df204b233f1dd7e876cdd61512a0eece9
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 27 May 2005 <nathan@codesourcery.com>
4 // Origin:Andrew Pinski pinskia@gcc.gnu.org
5 // PR 21455  bogus error with pointer to member of incomplete
7 class XMLFile;
9 typedef bool (XMLFile::*ParserFunctionPtr)();
11 struct ParserElement
13   ParserFunctionPtr getPreFunc() const { return preFunc; }
14   ParserFunctionPtr getPostFunc() const { return postFunc; }
15   ParserFunctionPtr preFunc;
16   ParserFunctionPtr postFunc;