blob: 6e1669e9ebbc6e9042511c9e3c4a0bbc27c30c01 [file]
#include <metal_stdlib>
using namespace metal;
struct S {
int i;
uint u;
float f;
bool b;
};
[[max_total_threads_per_threadgroup(1)]]
kernel void f() {
S v = S{};
}