mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-14 13:06:49 +00:00
Merge pull request #310 from marcusklaas/continue-reg-test
Add regression test for bad continue span
This commit is contained in:
commit
3fdbb3b97c
@ -121,3 +121,11 @@ fn issue227() {
|
||||
let handler = box DocumentProgressHandler::new(addr, DocumentProgressTask::DOMContentLoaded);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue184(source: &str) {
|
||||
for c in source.chars() {
|
||||
if index < 'a' {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -158,3 +158,11 @@ fn issue227() {
|
||||
DocumentProgressTask::DOMContentLoaded);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue184(source: &str) {
|
||||
for c in source.chars() {
|
||||
if index < 'a' {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user