blob: dfd0176263dc1c20564e94bacaa9dfb76215e5f9 [file] [log] [blame]
/* This idiom was found in Daikon and forces us to handle assignments
* in conditional mode, such as in the condition of an assert statement. */
public class AssertWithSideEffect {
void CheckAssert() {
boolean assert_enabled = false;
assert (assert_enabled = true);
}
}