blob: 7932d8f327f2a1a34075037d884268212fc39e18 [file] [log] [blame]
SKIP: FAILED
#include <metal_stdlib>
using namespace metal;
thread half t = 0.0h;
half2x4 m() {
t = (t + 1.0h);
return half2x4(half4(1.0h, 2.0h, 3.0h, 4.0h), half4(5.0h, 6.0h, 7.0h, 8.0h));
}
void f() {
float2x4 v = float2x4(m());
}
program_source:4:13: error: program scope variable must reside in constant address space
thread half t = 0.0h;
^
program_source:10:12: warning: unused variable 'v' [-Wunused-variable]
float2x4 v = float2x4(m());
^