Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail17689.d
blob: 512a6b56b50166d670ad71aa830c9afd4f6e4fe9 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail17689.d(10): Error: undefined identifier `x`
---
*/
void
main
(){
try
{}
finally
int
x
=
3
;
assert
(
x
==
3
);
}