Add tests for 3245 and 3561
Closes 3245 Closes 3561 These issues were originally linked in issue 3672 and as was mentioned in PR 3706, it's unclear which commit resolved the issue but the issue can no longer be reproduced.
This commit is contained in:
parent
f2c31ba04d
commit
4c78c738ba
4
tests/source/issue_3245.rs
Normal file
4
tests/source/issue_3245.rs
Normal file
@ -0,0 +1,4 @@
|
||||
fn main() {
|
||||
let x = 1;
|
||||
;let y = 3;
|
||||
}
|
6
tests/source/issue_3561.rs
Normal file
6
tests/source/issue_3561.rs
Normal file
@ -0,0 +1,6 @@
|
||||
fn main() {;7
|
||||
}
|
||||
|
||||
fn main() {
|
||||
;7
|
||||
}
|
4
tests/target/issue_3245.rs
Normal file
4
tests/target/issue_3245.rs
Normal file
@ -0,0 +1,4 @@
|
||||
fn main() {
|
||||
let x = 1;
|
||||
let y = 3;
|
||||
}
|
7
tests/target/issue_3561.rs
Normal file
7
tests/target/issue_3561.rs
Normal file
@ -0,0 +1,7 @@
|
||||
fn main() {
|
||||
7
|
||||
}
|
||||
|
||||
fn main() {
|
||||
7
|
||||
}
|
Loading…
Reference in New Issue
Block a user