diff options
author | Itamar <itamar8910@gmail.com> | 2021-08-13 13:39:14 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-14 12:40:55 +0200 |
commit | a38c330c686d760d1a0d42a60c4012549dad55fb (patch) | |
tree | ab6d2a81faa79cf4dfe1e7a777b954dee8aa32a9 /Userland/Libraries/LibCpp/Tests/if-else.cpp | |
parent | fd864fbb74a6db2250eabb85132ef6f818ef6f55 (diff) | |
download | serenity-a38c330c686d760d1a0d42a60c4012549dad55fb.zip |
LibCpp: Move parser tests to Userland/Libraries/LibCpp/Tests/parser
Diffstat (limited to 'Userland/Libraries/LibCpp/Tests/if-else.cpp')
-rw-r--r-- | Userland/Libraries/LibCpp/Tests/if-else.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Userland/Libraries/LibCpp/Tests/if-else.cpp b/Userland/Libraries/LibCpp/Tests/if-else.cpp deleted file mode 100644 index 91d0fe62fe..0000000000 --- a/Userland/Libraries/LibCpp/Tests/if-else.cpp +++ /dev/null @@ -1,8 +0,0 @@ -int foo() -{ - if (2) - return 2; - if (1 < 2) - return 1; - return 0; -} |