mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-25 02:20:04 +08:00
13 lines
550 B
C++
13 lines
550 B
C++
// Issue #2396
|
|
|
|
int main()
|
|
{
|
|
B::foo();
|
|
// ^ @function
|
|
Foo::A::foo();
|
|
// ^ @function
|
|
Foo::a::A::foo();
|
|
// ^ @function
|
|
return 0;
|
|
}
|