2022-01-06 21:32:41 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct S {
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
|
|
|
void f() {
|
2022-08-11 02:28:01 +00:00
|
|
|
S const tint_symbol = S{.i=1};
|
2022-01-14 17:16:32 +00:00
|
|
|
for(int i = tint_symbol.i; false; ) {
|
2022-01-06 21:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|