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