aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-08-02 13:41:37 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:17:07 -0300
commit3e8c945bdc731fb7c9eaff0007abc02bfa1e5c37 (patch)
tree17bd4233a69d16b959c1c4ee7c1673dfba1db582
parent6bb2780c978d93b6ebe7b423adda27e4292467f2 (diff)
Added compilation test for value type argument in a lshift operator.
-rw-r--r--tests/libsample/echo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/libsample/echo.h b/tests/libsample/echo.h
index 92038b1f0..187518859 100644
--- a/tests/libsample/echo.h
+++ b/tests/libsample/echo.h
@@ -43,6 +43,7 @@ public:
Echo& operator<<(unsigned int item) { return *this; }
Echo& operator<<(signed int item) { return *this; }
Echo& operator<<(const ObjectType* item) { return *this; }
+ Echo& operator<<(Str str) { return *this; }
};
#endif