(Broken test fixed) Updated static-namespace-functins.cpp to use function.call

This commit is contained in:
lfenzo 2022-07-29 19:50:40 -03:00 committed by Stephan Seitz
parent 8665a99a0f
commit 64f3f7415d

View file

@ -3,10 +3,10 @@
int main()
{
B::foo();
// ^ @function
// ^ @function.call
Foo::A::foo();
// ^ @function
// ^ @function.call
Foo::a::A::foo();
// ^ @function
// ^ @function.call
return 0;
}