* tests/cedet/semantic/test/manual/cedet/testsubclass.cpp: Add test
for 'this' in inline member function.
bool sneaky::antelope::testAccess() //^7^
{
- this.// -12-
+ this->// -12-
// #12# ( "fAntyPrivate" "fAntyProtected" "fAntyPublic" "fQuadProtected" "fQuadPublic" "testAccess" )
;
}
bool sneaky::jackalope::testAccess() //^8^
{
- this.// -13-
+ this->// -13-
// #13# ( "fBunnyPrivate" "fBunnyProtected" "fBunnyPublic" "fQuadProtected" "fQuadPublic" "testAccess" )
;
}
bool sneaky::bugalope::testAccess() //^9^
{
- this.// -14-
+ this->// -14-
// #14# ( "fBugPrivate" "fBugProtected" "fBugPublic" "fQuadPublic" "testAccess" )
;
}
{
}
}
+
+// Test 'this' in inline methods
+// See rev. 8488f.
+class outer {
+ int asdf;
+ int qwer;
+ char inlineMethod(void) {
+ this->// -16-
+ // #16# ( "asdf" "inlineMethod" "qwer" )
+ }
+};