blob: 7fee66ab1871b3970147523048bc64912db8211c [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
threadgroup bool v;
bool foo() {
threadgroup_barrier(mem_flags::mem_threadgroup);
bool const v_1 = v;
threadgroup_barrier(mem_flags::mem_threadgroup);
return v_1;
}
program_source:4:18: error: program scope variable must reside in constant address space
threadgroup bool v;
^