Add tests

This commit is contained in:
Stanislav Gromov 2021-05-05 12:30:32 +07:00 committed by Y_Less
parent 6649bd5abe
commit 33922d4af2
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
'test_type': 'output_check',
'errors': """
"""
}

View File

@ -0,0 +1,16 @@
forward [2][3]Func();
Func()
{
new a[2][3];
return a;
}
native [2][3]NativeFunc();
main()
{
new a[2][3];
a = Func();
a = NativeFunc();
return a[0][0];
}