mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-16 21:58:08 +00:00
15 lines
121 B
C++
15 lines
121 B
C++
|
namespace hello {
|
||
|
class Foo {
|
||
|
void foo();
|
||
|
};
|
||
|
|
||
|
void Foo::foo() {}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
Types:
|
||
|
Funcs:
|
||
|
hello::Foo::foo
|
||
|
Vars:
|
||
|
*/
|