Skip to content
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

Closed
wycats opened this issue May 13, 2014 · 5 comments
Closed

regex! is generating unused code warnings #14185

wycats opened this issue May 13, 2014 · 5 comments
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added.

Comments

@wycats
Copy link
Contributor

wycats commented May 13, 2014

src/cargo/mod.rs:9:1: 9:27 note: in expansion of regex!
src/cargo/sources/git.rs:42:21: 42:55 note: expansion site
src/cargo/sources/git.rs:42:21: 42:55 warning: code is never used: `add_empty`, #[warn(dead_code)] on by default
src/cargo/sources/git.rs:42         let regex = regex!(r"^\* (?P<branch>.*)\s*$");
                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/cargo/mod.rs:9:1: 9:27 note: in expansion of regex!
src/cargo/sources/git.rs:42:21: 42:55 note: expansion site
src/cargo/sources/git.rs:42:21: 42:55 warning: code is never used: `contains`, #[warn(dead_code)] on by default
src/cargo/sources/git.rs:42         let regex = regex!(r"^\* (?P<branch>.*)\s*$");
                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/cargo/mod.rs:9:1: 9:27 note: in expansion of regex!
src/cargo/sources/git.rs:42:21: 42:55 note: expansion site
src/cargo/sources/git.rs:42:21: 42:55 warning: code is never used: `empty`, #[warn(dead_code)] on by default
src/cargo/sources/git.rs:42         let regex = regex!(r"^\* (?P<branch>.*)\s*$");
                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/cargo/mod.rs:9:1: 9:27 note: in expansion of regex!
src/cargo/sources/git.rs:42:21: 42:55 note: expansion site
src/cargo/sources/git.rs:42:21: 42:55 warning: code is never used: `pc`, #[warn(dead_code)] on by default
src/cargo/sources/git.rs:42         let regex = regex!(r"^\* (?P<branch>.*)\s*$");
                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/cargo/mod.rs:9:1: 9:27 note: in expansion of regex!
src/cargo/sources/git.rs:42:21: 42:55 note: expansion site
src/cargo/sources/git.rs:42:21: 42:55 warning: code is never used: `groups`, #[warn(dead_code)] on by default
src/cargo/sources/git.rs:42         let regex = regex!(r"^\* (?P<branch>.*)\s*$");
                                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The source code creates a regex with a named capture and uses it immediately below.

@alexcrichton
Copy link
Member

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*$");
}

@huonw
Copy link
Member

huonw commented May 13, 2014

Just writing fn main() { regex!("..."); } demonstrates the flood of warnings (preferably the warning would be the "unused result that must be used" one, rather than revealing the implementation details of regex!()).

@BurntSushi
Copy link
Member

Hmm. I can't reproduce this with @huonw's example.

@huonw
Copy link
Member

huonw commented Jun 4, 2014

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.

@Kimundi
Copy link
Member

Kimundi commented Jun 4, 2014

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() {
}
<anon>:6:1: 6:42 warning: code is never used: `FOO`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<anon>:6:28: 6:42 warning: code is never used: `CAP_NAMES`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `exec`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `Nfa`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `run`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `step`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `add`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `Thread`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `Threads`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `new`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `add`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `add_empty`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `contains`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `empty`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `pc`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site
<anon>:6:28: 6:42 warning: code is never used: `groups`, #[warn(dead_code)] on by default
<anon>:6 static FOO: regex::Regex = regex!("foo");
                                    ^~~~~~~~~~~~~~
<anon>:3:1: 3:27 note: in expansion of regex!
<anon>:6:28: 6:42 note: expansion site

bors added a commit that referenced this issue Jun 5, 2014
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
@bors bors closed this as completed in 0f73bf3 Jun 5, 2014
mcpherrinm pushed a commit to mcpherrinm/rust that referenced this issue Jun 10, 2014
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.
lnicola pushed a commit to lnicola/rust that referenced this issue Mar 13, 2023
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added.
Projects
None yet
Development

No branches or pull requests

5 participants