blob: 6af4145152b91de02bb9c8d01b3a5fd0e5701af7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct _a {
int _b;
};
void f() {
_a const c = _a{};
int const d = c._b;
}