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

Associated functions on extern types not found across crates #49659

Closed
SimonSapin opened this issue Apr 4, 2018 · 2 comments
Closed

Associated functions on extern types not found across crates #49659

SimonSapin opened this issue Apr 4, 2018 · 2 comments
Labels
A-resolve Area: Name/path resolution done by `rustc_resolve` specifically T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@SimonSapin
Copy link
Contributor

SimonSapin commented Apr 4, 2018

Crate a:

#![feature(extern_types)]

extern {
    pub type Void;
}

impl Void {
    /// Similar to `std::ptr::null_mut`, which requires `T: Sized`.
    pub fn null_mut() -> *mut Self {
        0 as _
    }
}

pub fn foo() {
    let _ = Void::null_mut();  // This is fine
}

Crate b:

extern crate a;

fn main() {
    let _ = a::Void::null_mut();
}
error[E0599]: no function or associated item named `null_mut` found for type `a::Void` in the current scope
 --> src/main.rs:4:13
  |
4 |     let _ = a::Void::null_mut();
  |             ^^^^^^^^^^^^^^^^^ function or associated item not found in `a::Void`
@SimonSapin SimonSapin added A-resolve Area: Name/path resolution done by `rustc_resolve` specifically T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Apr 4, 2018
@crumblingstatue
Copy link
Contributor

Probably the same issue as #46665

@SimonSapin
Copy link
Contributor Author

Yes it is, thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-resolve Area: Name/path resolution done by `rustc_resolve` specifically T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

2 participants