Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
78 B
C++
Raw Permalink Normal View History

static int Static()
{
return 1;
}
int CallStaticB()
{
return Static();
}