feat(test): test ansi colors with stderr/stdout merged output

This commit is contained in:
Barrett Ruth 2025-09-20 13:03:07 -04:00
parent b507dad4a7
commit 56c31b22b9
4 changed files with 176 additions and 130 deletions

8
spec/fixtures/syntax_error.cpp vendored Normal file
View file

@ -0,0 +1,8 @@
#include <iostream>
int main() {
std::cout << "this will never compile" << std::endl
// missing semicolon above
undefined_function();
return 0
// missing semicolon again