2021-06-16 09:19:36 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
2021-05-18 09:24:18 +00:00
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_array_wrapper {
|
|
|
|
int arr[2];
|
|
|
|
};
|
|
|
|
|
2021-05-18 09:24:18 +00:00
|
|
|
void foo() {
|
2021-07-02 19:27:42 +00:00
|
|
|
tint_array_wrapper tint_symbol = (tint_array_wrapper)0;
|
|
|
|
tint_array_wrapper implict = (tint_array_wrapper)0;
|
2021-05-18 09:24:18 +00:00
|
|
|
implict = tint_symbol;
|
|
|
|
}
|