blob: 1da1a69acaf9df12d071a9a49485a04dce251acc [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
thread int i = 123;
kernel void tint_symbol() {
thread int* const p = i;
int const u = (p + 1);
}
program_source:4:12: error: program scope variable must reside in constant address space
thread int i = 123;
^
program_source:7:13: error: cannot initialize a variable of type 'const int' with an rvalue of type 'int *'
int const u = (p + 1);
^ ~~~~~~~