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