blob: b9dd7c8a92d87248441e745c8f2952fd3ef4d022 [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) {
}
}
}
}