Files
vortex/runtime/tests/hello/hello.cpp
2020-04-14 19:39:59 -04:00

18 lines
110 B
C++

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