Test: Test that 'a=b; if (a==b)' don't generate false positives

This commit is contained in:
Daniel Marjamäki 2007-06-02 16:33:46 +00:00
parent 2c9a688dd4
commit 2490357054
2 changed files with 14 additions and 0 deletions

0
testif4/err.msg Normal file
View File

14
testif4/testif4.cpp Normal file
View File

@ -0,0 +1,14 @@
void f()
{
doc = cur->doc;
if (doc != NULL)
dict = doc->dict;
else
dict = NULL;
if (dict != NULL) {
}
}