You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
151 B

#include <frame.h>
#include <cstdio>
struct _test {
int a, b;
};
int main()
{
_test hi = { 0, 0 };
auto _a = _sm_init(nullptr, hi);
return 0;
}