pawn-compiler/source/compiler/tests/md_array_crash_gh_220.pwn
Zeex 29a6df8163
Add a custom test runner script (#355)
* Add a custom test runner script

At the moment it supports only tests that output warnings or errors (test
type = output_check). More types can be added in the future.
2018-08-10 23:43:02 +06:00

8 lines
136 B
Plaintext

new a[1000][500] = { { 0, 1, ... }, ... };
new b[2000][500] = { { 0, -1, ... }, ... };
main() {
a[0][0] = b[0][0];
#error OK
}