Files
kernels/tests/runtime/hello/hello.cpp
2021-06-13 17:42:04 -07:00

20 lines
161 B
C++

#include <stdio.h>
struct hello {
int a;
hello()
{
a = 55;
}
};
hello nameing;
int main()
{
nameing.a = 20;
int b;
printf("Passed!\n");
return 0;
}