1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
//!DeclaratorTest
//%CPP
int sd;
int* ip;
int hs = 1;
char& c;
void foo()
{
struct B
{
int f();
};
int (B::*pb)() = &B::f;
}
//!ArrayDeclaratorTest
//%CPP
int* pi[3];
int (*p3i)[3];
//!FieldDeclaratorTest
//%CPP
struct Bit
{
int bit : 3;
};
//!CStandardFunctionDeclaratorTest
//%C
int foo();
int bar(int a, int b);
int fun(const char* a, ...);
int fun3(int i, const char* a, ...);
//!CPPStandardFunctionDeclaratorTest
//%CPP
int foo();
int bar(int a, int b);
int fun(const char* a, ...);
int fun2(const char* a ...);
int fun3(int i, const char* a, ...);
//= ,... is synonymous with ...
int foo();
int bar(int a, int b);
int fun(const char* a, ...);
int fun2(const char* a, ...);
int fun3(int i, const char* a, ...);
//!CPPFunctionDeclaratorTest
//%CPP
char& operator [](unsigned int);
class TestClass
{
int alpha;
TestClass(int a);
virtual void pure() = 0;
virtual void func() noexcept = 0;
};
TestClass::TestClass(int a)
:alpha(a)
{
}
void undefPar(const char* c) throw (int);
int getV() const;
int vol() volatile;
//!ICPPASTFunctionTryBlockDeclarator
//%CPP
int f(int);
class C
{
int i;
double d;
public:
C(int, double);
};
C::C(int ii, double id)
try
:i(f(ii)), d(id)
{
}
catch (...){
}
//!CKnRFunctionDeclarator
//%C GNU
int foo(a, b)
int b, a;
{
}
//!ICPPASTDeclarator with nested declarator being a variable
//%C
int* (*var[3]);
//!ICPPASTDeclarator with nested declarator and redundant parentheses
//%C
char (*((*fptr))(int, char));
//!ICPPASTDeclarator with nested declarator as a method
//%CPP
class Foo
{
int (*(*aMethod())[2]);
};
//!ICPPASTReferenceOperator rvalue reference
//%CPP
int&& foo(int&& a)
{
char&& b;
}
//!ICPPASTFunctionDeclarator in member function declared final
//%CPP
struct S
{
virtual void memFun() final;
};
//!ICPPASTFunctionDeclarator in member function declared override
//%CPP
struct S
{
virtual void memFun() override;
};
//!ICPPASTFunctionDeclarator in member function declared override final
//%CPP
struct S
{
virtual void memFun() override final;
};
//!ICPPASTFunctionDeclarator in member function definition declared final
//%CPP
struct S
{
virtual void memFun() final
{
}
};
//!Noexcept without expression specifiers
//%CPP
void foo() noexcept
{
}
//!Noexcept with expression specifiers
//%CPP
void foo() noexcept (1 + 1)
{
}
//!Nested noexcept specifiers
//%CPP
void foo() noexcept (noexcept (1 + 1))
{
}
//!Multiple nested noexcept specifiers
//%CPP
void foo() noexcept (noexcept (1 + 1) && noexcept (2 + 3))
{
}
//!Basic UDL operator
//%CPP
constexpr long double operator ""_deg(long double deg)
{
return deg * 3.141592 / 180;
}
//!Memberfunction with varargs parameter without pointer ops
//%CPP
struct Foo
{
template<typename... ARGS>
void bar(ARGS... args)
{
}
};
//!Memberfunction with varargs parameter with pointer ops
//%CPP
struct Foo
{
template<typename... ARGS>
void bar(ARGS&&... args)
{
}
};
//!Template function with varargs parameter without pointer ops
//%CPP
template<typename... ARGS>
void foo(ARGS... args)
{
}
//!Template function with varargs parameter with pointer ops
//%CPP
template<typename... ARGS>
void foo(ARGS&&... args)
{
}
//!Function with varargs parameter without pointer ops
//%CPP
void foo(int arg, ...)
{
}
//!Function with varargs parameter with pointer ops
//%CPP
void foo(int&& arg, ...)
{
}
|