17 lines
167 B
Plaintext
17 lines
167 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void another_function() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void x_100_1() {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fragment void x_100() {
|
||
|
x_100_1();
|
||
|
return;
|
||
|
}
|
||
|
|