2021-05-18 09:24:18 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2021-06-02 17:23:03 +00:00
|
|
|
struct tint_array_wrapper_0 {
|
|
|
|
int array[2];
|
|
|
|
};
|
2021-05-18 09:24:18 +00:00
|
|
|
|
|
|
|
void foo() {
|
2021-06-02 17:23:03 +00:00
|
|
|
tint_array_wrapper_0 tint_symbol = {0};
|
|
|
|
tint_array_wrapper_0 implict = {0};
|
2021-05-18 09:24:18 +00:00
|
|
|
implict = tint_symbol;
|
|
|
|
}
|
|
|
|
|