blob: 50fb1752f65d876b6c571501f182c1e59f7c1bc7 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct a {
int a;
};
void f() {
a a_1 = a{};
a b = a_1;
a a_2 = a{};
a b_1 = a_2;
}