#include <metal_stdlib>
using namespace metal;

struct S {
  int a;
  float b;
};

[[max_total_threads_per_threadgroup(1)]]
kernel void v_1() {
  S v = {};
}
