1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:38:13 +00:00

LibCpp: Move parser tests to Userland/Libraries/LibCpp/Tests/parser

This commit is contained in:
Itamar 2021-08-13 13:39:14 +03:00 committed by Andreas Kling
parent fd864fbb74
commit a38c330c68
16 changed files with 4 additions and 4 deletions

View file

@ -1,8 +0,0 @@
int foo()
{
if (2)
return 2;
if (1 < 2)
return 1;
return 0;
}