blob: 853b504c05021534f1f5b96a62400abc3139e830 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct _A {
int _B;
};
void f() {
_A const c = _A{};
int const d = c._B;
}