ccls/tests/method_definition_in_namespace.cc

15 lines
121 B
C++
Raw Normal View History

2017-02-17 09:57:44 +00:00
namespace hello {
class Foo {
void foo();
};
void Foo::foo() {}
}
/*
OUTPUT:
Types:
Funcs:
hello::Foo::foo
Vars:
*/