view tests/mini/bug42.d @ 734:6dcab994ddc3

Fold in mandel's patch for ARM from #106
author Christian Kamm <kamm incasoftware de>
date Mon, 27 Oct 2008 16:36:59 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug42;

void main() {
    int i = 2;
    switch (i) {
    case 0:
    case 1:
    default:
    }
}