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