Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
test10.d
blob: 4c1425772b256a061d35b5f5f03b4ae91b453b41 [
file
] [
log
] [
blame
]
/* TEST_OUTPUT:
---
fail_compilation/test10.d(10): Error: found `else` without a corresponding `if`, `version` or `debug` statement
---
*/
void
test
(
int
i
)
{
++
i
;
else
++
i
;
}