From 49870be846cc84c42af29b3292d8edc768f4b13b Mon Sep 17 00:00:00 2001 From: dellaert Date: Sun, 30 Nov 2014 23:46:25 +0100 Subject: [PATCH] Another test --- wrap/tests/testReturnValue.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wrap/tests/testReturnValue.cpp b/wrap/tests/testReturnValue.cpp index b604bf8f8..720b120b4 100644 --- a/wrap/tests/testReturnValue.cpp +++ b/wrap/tests/testReturnValue.cpp @@ -105,6 +105,10 @@ TEST( ReturnValue, grammar ) { EXPECT(parse("double", g, space_p).full); EXPECT(actual==ReturnValue(ReturnType("double",Qualified::BASIS))); actual.clear(); + + EXPECT(parse("void", g, space_p).full); + EXPECT(actual==ReturnValue(ReturnType("void",Qualified::VOID))); + actual.clear(); } //******************************************************************************