blob: 853b7952a797f4b4d268b9fdc7773d773baff504 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice17690.d(9): Error: undefined identifier `x`
---
*/
void main(){
scope(exit) int x=3;
assert(x==3);
}