blob: 1c3993d5d59f9477d082d430a32fc39c18c388ee [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void c() {
int a = 1;
a = as_type<int>((as_type<uint>(a) + as_type<uint>(2)));
}
void b() {
c();
c();
}