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;
|
||
|
}
|
||
|
|