``` Dart int foo(int i) { if (i ==42) { // useless if print(i); return i; } print(i); return i; } ```