blob: 4039c6643a0f5fddebbc208dc2a4725202851589 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
void deref() {
int3 a = 0;
thread int3* const p = a;
int b = p[0u];
p[0u] = 42;
}
void no_deref() {
int3 a = 0;
thread int3* const p = a;
int b = p[0u];
p[0u] = 42;
}
kernel void tint_symbol() {
deref();
no_deref();
}
program_source:6:22: error: cannot initialize a variable of type 'int3 *const' with an lvalue of type 'int3' (vector of 3 'int' values)
thread int3* const p = a;
^ ~
program_source:7:7: error: cannot initialize a variable of type 'int' with an lvalue of type 'int3' (vector of 3 'int' values)
int b = p[0u];
^ ~~~~~
program_source:12:22: error: cannot initialize a variable of type 'int3 *const' with an lvalue of type 'int3' (vector of 3 'int' values)
thread int3* const p = a;
^ ~
program_source:13:7: error: cannot initialize a variable of type 'int' with an lvalue of type 'int3' (vector of 3 'int' values)
int b = p[0u];
^ ~~~~~