9 lines
78 B
C++
9 lines
78 B
C++
static int Static()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int CallStaticA()
|
|
{
|
|
return Static();
|
|
}
|