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.
16 lines
117 B
16 lines
117 B
7 months ago
|
struct S
|
||
|
{
|
||
|
static char m0;
|
||
|
static int m1;
|
||
|
};
|
||
|
|
||
|
char S::m0;
|
||
|
int S::m1;
|
||
|
|
||
|
void
|
||
|
foo(S&)
|
||
|
{
|
||
|
S::m0 = 1;
|
||
|
S::m1 = 2;
|
||
|
}
|