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