16 lines
152 B
Plaintext
16 lines
152 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct A {
|
||
|
int B;
|
||
|
};
|
||
|
struct _A {
|
||
|
int _B;
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
_A const c = {};
|
||
|
int const d = c._B;
|
||
|
}
|
||
|
|