blob: e1af5ac41ea6a2d6b91948b8dfc667e0c4c93f60 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
constant int A = 1;
constant int _A = 2;
void f() {
int const B = A;
int const _B = _A;
}