refactoring fixes
This commit is contained in:
18
runtime/tests/hello/hello.cpp
Normal file
18
runtime/tests/hello/hello.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
|
||||
|
||||
struct hello {
|
||||
int a;
|
||||
hello()
|
||||
{
|
||||
a = 55;
|
||||
}
|
||||
};
|
||||
|
||||
hello nameing;
|
||||
|
||||
int main()
|
||||
{
|
||||
nameing.a = 20;
|
||||
int b;
|
||||
}
|
||||
Reference in New Issue
Block a user