Files
vortex/sw/runtime/tests/hello/hello.cpp
2020-04-14 06:35:20 -04:00

18 lines
110 B
C++

struct hello {
int a;
hello()
{
a = 55;
}
};
hello nameing;
int main()
{
nameing.a = 20;
int b;
}