class Test {
public:
void function();
};
void Test::function() {}
int main() {
Test test;
test.function();
}