// This file is part of the SV-Benchmarks collection of verification tasks: // https://github.com/sosy-lab/sv-benchmarks // // This file was part of CPAchecker, // a tool for configurable software verification: // https://cpachecker.sosy-lab.org // // SPDX-FileCopyrightText: 2007-2020 Dirk Beyer // // SPDX-License-Identifier: Apache-2.0 extern void __assert_fail(const char *, const char *, unsigned int, const char *) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); void reach_error() { __assert_fail("0", "nested_2.c", 13, "reach_error"); } int main() { int a = 6; int b = 6; for(a = 0; a < 6; ++a) { for(b = 0; b < 6; ++b) { } } if(!(a == 6 && b == 6 )) { reach_error(); } return 1; }