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