http://d.puremagic.com/issues/show_bug.cgi?id=1041
------- Comment #2 from thomas-dloop at kuehne.cn 2007-03-12 00:29 -------
I think one can interpret
# switch(3){
# scope(exit) i--;
# default:
# ;
# }
as
# goto Ldefault;{
# scope(exit) i--;
# Ldefault:
# ;
# }
--