10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
kernel void f() {
|
||
|
uint const a = 1u;
|
||
|
uint const b = as_type<uint>(a);
|
||
|
return;
|
||
|
}
|
||
|
|