debuginfo: Fix ICE when compiling for-loops with lines-tables-only.
This commit is contained in:
parent
1c78ad937b
commit
45c6423cbc
5 changed files with 28 additions and 32 deletions
|
|
@ -48,7 +48,11 @@ fn zzz() {()}
|
|||
fn some_function(a: int, b: int) {
|
||||
let some_variable = Struct { a: 11, b: 22 };
|
||||
let some_other_variable = 23i;
|
||||
zzz(); // #break
|
||||
|
||||
for x in range(0, 1) {
|
||||
zzz(); // #break
|
||||
}
|
||||
}
|
||||
|
||||
fn some_other_function(a: int, b: int) -> bool { true }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue