Step 44 TDD test: C++-specific idioms

Tests FunctionCall, const reference parameters via LangSpecific annotation,
#include directives, using namespace declarations, void return type,
IndexAccess bracket notation, and MemberAccess dot/arrow notation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:20:41 -07:00
parent d966eae2cf
commit 7a847c4f03
2 changed files with 210 additions and 0 deletions

View File

@@ -145,6 +145,9 @@ target_include_directories(step42_test PRIVATE src)
add_executable(step43_test tests/step43_test.cpp)
target_include_directories(step43_test PRIVATE src)
add_executable(step44_test tests/step44_test.cpp)
target_include_directories(step44_test PRIVATE src)
add_executable(whetstone_editor src/main.cpp)
target_include_directories(whetstone_editor PRIVATE src)
# find_package(SDL2 REQUIRED) # Commented out for now to avoid build issues