Test #pragma unwritten no warnings

This commit is contained in:
Y_Less 2018-10-04 14:32:18 +02:00
parent e9d61e29f5
commit 44e85ed685
2 changed files with 16 additions and 0 deletions

View File

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

View File

@ -0,0 +1,11 @@
Func(a[])
{
#pragma unwritten a
return a[0];
}
main() {
new a[2];
Func(a);
}