12 lines
110 B
Plaintext
12 lines
110 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct a {
|
||
|
int a;
|
||
|
};
|
||
|
|
||
|
void f(a a_1) {
|
||
|
a const b = a_1;
|
||
|
}
|
||
|
|