9 lines
106 B
Plaintext
9 lines
106 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void f() {
|
||
|
int const i = 1;
|
||
|
int b = int2(1, 2)[i];
|
||
|
}
|
||
|
|