ignores nested identifiers which results in unhappy end users. git-svn-id: svn://10.0.0.236/trunk@209634 18797224-902f-48f8-a5cc-f745e15eee43
34 lines
387 B
C++
34 lines
387 B
C++
/**
|
|
* Have you ever wondered what it takes to become an identifier?
|
|
*/
|
|
|
|
class this_is_a_class {
|
|
void this_method_should_probably_be_an_identifier()
|
|
{
|
|
}
|
|
|
|
};
|
|
|
|
class outer_class {
|
|
class inner_class {
|
|
struct sucky {
|
|
} ness;
|
|
union bleck {
|
|
int thing;
|
|
char eep;
|
|
} ery;
|
|
};
|
|
};
|
|
|
|
class _inner_class {
|
|
};
|
|
|
|
struct sucky_ {
|
|
} ness_;
|
|
|
|
union bleck_ {
|
|
int thing_;
|
|
char eep_;
|
|
} ery_;
|
|
|