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

use std::*; makes fail! fail #7580

Closed
chris-morgan opened this issue Jul 4, 2013 · 5 comments
Closed

use std::*; makes fail! fail #7580

chris-morgan opened this issue Jul 4, 2013 · 5 comments
Labels
E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added.

Comments

@chris-morgan
Copy link
Member

Minimal test case:

use std::*;
fn main() {
    fail!("");
}

rustc output:

<core-macros>:45:12: 45:48 error: unresolved import: could not find `sys` in `std::std`.
<core-macros>:45             ::std::sys::FailWithCause::fail_with($msg, file!(), line!())
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<core-macros>:40:4: 50:5 note: in expansion of fail!
x.rs:3:1: 3:11 note: expansion site
<core-macros>:45:12: 45:48 error: use of undeclared module `::std::sys::FailWithCause`
<core-macros>:45             ::std::sys::FailWithCause::fail_with($msg, file!(), line!())
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<core-macros>:40:4: 50:5 note: in expansion of fail!
x.rs:3:1: 3:11 note: expansion site
<core-macros>:45:12: 45:48 error: unresolved name `std::sys::FailWithCause::fail_with`.
<core-macros>:45             ::std::sys::FailWithCause::fail_with($msg, file!(), line!())
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<core-macros>:40:4: 50:5 note: in expansion of fail!
x.rs:3:1: 3:11 note: expansion site
error: aborting due to 3 previous errors

Rust 0.7, Ubuntu 13.04, 64-bit.

@brson
Copy link
Contributor

brson commented Jul 10, 2013

Funny. This is because std exports an inner module called std that shadows std.

@brson
Copy link
Contributor

brson commented Jul 10, 2013

There are probably other lurking bugs due to this.

@thestinger
Copy link
Contributor

This evil inner module is still around. We couls probably just special case the macro injection via an attribute like #[module_is_std];.

@alexcrichton
Copy link
Member

This could probably use a similar fix as #8242, something at the top of the file which says that the path to libstd is.

@huonw
Copy link
Member

huonw commented Oct 20, 2013

Fixed by the privacy changes that meant that std module in std can be private. This works:

use std::*;
fn main() {
    io::println("ok");
    fail!()
}

Flagging as needstest.

@huonw huonw closed this as completed in ab045fa Oct 20, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. 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