blob: 361b2248f76c8c8afa5393918332241808acf1f5 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
thread bool continue_execution = true;
void f(bool cond) {
if (cond) {
continue_execution = false;
return;
}
}
program_source:4:13: error: program scope variable must reside in constant address space
thread bool continue_execution = true;
^