blob: 0b38868282e04919d25cd33a9efa43e0f474a4ab [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__;
}