1reg[7:0] r;
2initial begin
3  // This index is undefined, but it isn't technically an error.
4  // The only thing this test is checking is that we don't crash
5  // here.
6  r[100] = 1;
7  $finish;
8end
9