-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
regex! is generating unused code warnings #14185
Comments
Could you provide some sample code? This doesn't seem to emit warnings in a smaller test case: #![feature(phase)]
#[phase(syntax)] extern crate regex_macros;
extern crate regex;
fn main() {
let regex = regex!(r"^\* (?P<branch>.*)\s*$");
} |
Just writing |
Hmm. I can't reproduce this with @huonw's example. |
I'd guess @Kimundi's static regex changes have incidentally fixed this (I'm away from a compiler so can't check/check-in a test). Flagging as needs-test. |
Actually, I discovered these warning after I implemented regex in statics. Current example that generates lots of warnings: (tested on playpen) #![feature(phase)]
#[phase(syntax)]
extern crate regex_macros;
extern crate regex;
static FOO: regex::Regex = regex!("foo");
fn main() {
}
|
This fix suppresses dead_code warnings from code generated by regex! when the result of regex! is unused. Correct behavior should be a single unused variable warning. Regression tests are included for both `let` and `static` bound regex! values. see #14185
This fix suppresses dead_code warnings from code generated by regex! when the result of regex! is unused. Correct behavior should be a single unused variable warning. Regression tests are included for both `let` and `static` bound regex! values.
Fix: Run doctests for structs with lifetime parameters from IDE Fixes rust-lang#14142: Doctests can't be triggered for structs with lifetimes This MR adds lifetime parameters to the structs path for runnables so that they can be triggered from an IDE as well. This is my first MR for rust-analyzer, please let me know if I should change something, either in code or the description here.
The source code creates a regex with a named capture and uses it immediately below.
The text was updated successfully, but these errors were encountered: