mirror of
https://github.com/vim/vim.git
synced 2025-10-28 09:27:14 -04:00
updated for version 7.0d03
This commit is contained in:
@@ -742,6 +742,31 @@ int main(void)
|
||||
next_line_of_code();
|
||||
}
|
||||
|
||||
barry()
|
||||
{
|
||||
Foo::Foo (int one,
|
||||
int two)
|
||||
: something(4)
|
||||
{}
|
||||
}
|
||||
|
||||
barry()
|
||||
{
|
||||
Foo::Foo (int one, int two)
|
||||
: something(4)
|
||||
{}
|
||||
}
|
||||
|
||||
Constructor::Constructor(int a,
|
||||
int b
|
||||
) :
|
||||
BaseClass(a,
|
||||
b,
|
||||
c),
|
||||
mMember(b)
|
||||
{
|
||||
}
|
||||
|
||||
/* end of AUTO */
|
||||
|
||||
STARTTEST
|
||||
@@ -1188,6 +1213,20 @@ protected:
|
||||
int Test() { return FALSE; }
|
||||
|
||||
public: // comment
|
||||
void testfall();
|
||||
protected:
|
||||
void testfall();
|
||||
};
|
||||
|
||||
STARTTEST
|
||||
:set cino=+20
|
||||
2kdd]]=][
|
||||
ENDTEST
|
||||
|
||||
void
|
||||
foo()
|
||||
{
|
||||
if (a)
|
||||
{
|
||||
} else
|
||||
asdf;
|
||||
|
||||
@@ -618,7 +618,7 @@ Constructor::Constructor(int a,
|
||||
|
||||
Constructor::Constructor(int a,
|
||||
int b ) /*x*/ : /*x*/ BaseClass(a),
|
||||
member(b)
|
||||
member(b)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -651,7 +651,7 @@ class CAbc :
|
||||
};
|
||||
|
||||
class CAbc : public BaseClass1,
|
||||
protected BaseClass2
|
||||
protected BaseClass2
|
||||
{
|
||||
};
|
||||
|
||||
@@ -730,6 +730,31 @@ int main(void)
|
||||
next_line_of_code();
|
||||
}
|
||||
|
||||
barry()
|
||||
{
|
||||
Foo::Foo (int one,
|
||||
int two)
|
||||
: something(4)
|
||||
{}
|
||||
}
|
||||
|
||||
barry()
|
||||
{
|
||||
Foo::Foo (int one, int two)
|
||||
: something(4)
|
||||
{}
|
||||
}
|
||||
|
||||
Constructor::Constructor(int a,
|
||||
int b
|
||||
) :
|
||||
BaseClass(a,
|
||||
b,
|
||||
c),
|
||||
mMember(b)
|
||||
{
|
||||
}
|
||||
|
||||
/* end of AUTO */
|
||||
|
||||
|
||||
@@ -1070,6 +1095,16 @@ protected:
|
||||
};
|
||||
|
||||
|
||||
void
|
||||
foo()
|
||||
{
|
||||
if (a)
|
||||
{
|
||||
} else
|
||||
asdf;
|
||||
}
|
||||
|
||||
|
||||
{
|
||||
averylongfunctionnamelongfunctionnameaverylongfunctionname()->asd(
|
||||
asdasdf,
|
||||
|
||||
Reference in New Issue
Block a user