Libraries/LibCpp: Add parser test for out-of-line function definitions

This commit is contained in:
Itamar 2022-02-22 20:17:43 +02:00 committed by Linus Groh
commit 610b380515
Notes: sideshowbarker 2024-07-17 18:22:31 +09:00
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,10 @@
class A
{
bool foo();
};
bool A::foo() {
return true;
}