dawn-cmake/test/out_of_order_decls/struct/alias.wgsl.expected.msl

13 lines
117 B
Plaintext

#include <metal_stdlib>
using namespace metal;
struct S {
int m;
};
fragment void f() {
S v = {};
return;
}