* 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.
8 lines
136 B
Plaintext
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
|
|
}
|