Jump to

v07-l1-findError

What kind of error does the following code block produce ?

#include <cassert>

int main() {
    assert(1 == 1);
    assert(2 == 1);
}

???