blob: 5afe76fb2bd39f90cd7c6a925fab1b2edbecf5d3 [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;
}