pawn-compiler/source/compiler/tests/gh_436_local_var_self_init.pwn
2019-06-28 23:57:03 +07:00

10 lines
115 B
Plaintext

#include <console>
main()
{
new arr[2];
new test = test;
new test2 = arr[test2];
#pragma unused test, test2
}