diff --git a/tests/example1_macro.mod b/tests/example1_macro.mod
index 0db3221ec85f98a931e91a74a6896312364dad46..06a0fd918de15fe3748ce41b0f9158618bde3e5f 100644
--- a/tests/example1_macro.mod
+++ b/tests/example1_macro.mod
@@ -157,3 +157,7 @@ stoch_simul;
 @#error "String comparison"
 @#endif
 
+@#define f(x) = x + "C"
+@#if "A" + f("B") != "ABC"
+@#error "Problem with String concatenation"
+@#endif