mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
149 B
D
10 lines
149 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice17690.d(9): Error: undefined identifier `x`
|
|
---
|
|
*/
|
|
void main(){
|
|
scope(exit) int x=3;
|
|
assert(x==3);
|
|
}
|