diff options
Diffstat (limited to 'Userland/Libraries/LibCpp/Tests/preprocessor/macro2.cpp')
-rw-r--r-- | Userland/Libraries/LibCpp/Tests/preprocessor/macro2.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCpp/Tests/preprocessor/macro2.cpp b/Userland/Libraries/LibCpp/Tests/preprocessor/macro2.cpp new file mode 100644 index 0000000000..cf6ef31b83 --- /dev/null +++ b/Userland/Libraries/LibCpp/Tests/preprocessor/macro2.cpp @@ -0,0 +1,3 @@ +#define M(x) String {x + "lo"} + +M("he" + "l") |