blob: cc20aac0d5dd52cbb98d4e9e22e17f6b7df6d542 [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;
}