Fixed leak

This commit is contained in:
Phil Nash
2010-11-11 20:37:46 +00:00
parent 5cf94a8043
commit 92f2d32f74
3 changed files with 18 additions and 5 deletions

View File

@@ -40,4 +40,12 @@ TEST_CASE( "succeeding/Tricky/complex lhs", "Where the LHS is not a simple value
// This only captures part of the expression, but issues a warning about the rest
EXPECT( a == 2 || b == 2 );
}
TEST_CASE( "succeeding/Tricky/complex lhs/2", "Where the LHS is not a simple value" )
{
int a = 1;
// This only captures part of the expression, but issues a warning about the rest
// EXPECT( a + 1 == 2);
}