Files
ispc/tests_errors/decl-4.ispc
Matt Pharr 79684a0bed Add support for running tests that are expected to fail
Also add should-fail tests that exercise const and decl
initializers
2011-11-14 08:45:41 -08:00

6 lines
143 B
Plaintext

// Can't declare an unsized array as a local variable without providing an initializer expression to set its size
int func() {
int a[];
}