Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CondCovExample.java 119 B
if c1 and c2 then
   st;
else
   sf;

// equivalent to

if c1 then
   if c2 then
     st;
   else
     sf;
else
   sf;