* config/sparc/driver-sparc.c (cpu_names): Add SPARC-T5 entry.
[official-gcc.git] / gcc / testsuite / g++.dg / other / typedef3.C
blob8ead5b84520c2b3e69a2d82950a98ff1581102e1
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin: PR c++/40357
3 // { dg-do compile }
5 struct XalanCProcessor
7       typedef enum {eInvalid, eXalanSourceTree, eXercesDOM} ParseOptionType;
8           ParseOptionType getParseOption(void);
9 };
10 typedef XalanCProcessor::ParseOptionType ParseOptionType;
11 ParseOptionType XalanCProcessor::getParseOption(void) {}