Test: Test that 'a=b; if (a==b)' is detected

This commit is contained in:
Daniel Marjamäki 2007-06-02 16:32:45 +00:00
parent 7b85324a0b
commit 2c9a688dd4
2 changed files with 11 additions and 0 deletions

0
testif3/err.msg Normal file
View File

11
testif3/testif3.cpp Normal file
View File

@ -0,0 +1,11 @@
void f()
{
a = b;
#endif
if (a == b)
{
}
}