* CheckIfAssignment: assignment in condition * CheckCaseWithoutBreak: case but no break/return
11 lines
52 B
C++
11 lines
52 B
C++
|
|
|
|
void f()
|
|
{
|
|
if (a=b)
|
|
{
|
|
|
|
}
|
|
}
|
|
|