You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class X16
|
|
{
|
|
X16() = delete;
|
|
public:
|
|
void z(int x = 0);
|
|
virtual void f(int x, int y) = 0;
|
|
int hhi = 9;
|
|
void g(int x = 0);
|
|
int i = 9;
|
|
void x(int ggs = 0);
|
|
};
|