blob: 8f6ddbb539b9c81a8f6393c53e371d8b7cbd9f68 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void foo(bool a, bool b, bool c, bool d, bool e) {
if (a) {
if (b) {
return;
}
if (c) {
if (d) {
return;
}
if (e) {
}
}
}
}