dawn-cmake/test/ptr_ref/store/local/struct_field.spvasm.expecte...

14 lines
136 B
Plaintext

#include <metal_stdlib>
using namespace metal;
struct S {
int i;
};
kernel void tint_symbol() {
S V = {};
V.i = 5;
return;
}