blob: 564bcdc73d7d7ce05a7d30aca5aa8168f79d7ad4 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const bool3 a = bool3(true, true, false);
const bool3 b = bool3(true, false, true);
const bool3 r = (bool3(true, true, false) & bool3(true, false, true));
return;
}