You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are actually 2 mistakes here. test2() and test3() however the test code for this is expecting one mistake. False positive?
void test () { }
void test2 (){ }
void test3 ()
{ }
int main (string[] args) {
return0;
}
However, if you swap the order of test2() and test3(), the check works correctly detecting both mistakes. Despite the check behaving correctly, the test code fails.
void test () { }
void test3 ()
{ }
void test2 (){ }
int main (string[] args) {
return0;
}
The text was updated successfully, but these errors were encountered:
There are actually 2 mistakes here.
test2()
andtest3()
however the test code for this is expecting one mistake. False positive?However, if you swap the order of
test2()
andtest3()
, the check works correctly detecting both mistakes. Despite the check behaving correctly, the test code fails.The text was updated successfully, but these errors were encountered: