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

confusing error message 'constructor is not visible here due to private fields' #83450

Closed
jakobhellermann opened this issue Mar 24, 2021 · 1 comment · Fixed by #89293
Closed
Assignees
Labels
A-diagnostics Area: Messages for errors, warnings, and lints 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

@jakobhellermann
Copy link
Contributor

jakobhellermann commented Mar 24, 2021

Given the following code: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=ab05c6fc2149226b37b685ca913e1707

mod module {
    pub struct SomeTupleStruct(u8);
    pub struct SomeRegularStruct {
        foo: u8
    }
    
    impl SomeTupleStruct {
        pub fn new() -> Self {
            Self(0)
        }
    }
    impl RegularStruct {
        pub fn new() -> Self {
            Self { foo: 0 }
        }
    }
}

use module::{SomeTupleStruct, SomeRegularStruct};

fn main() {
    let _ = SomeTupleStruct.new();
    let _ = SomeRegularStruct.new();
}

The current output is:

   Compiling playground v0.0.1 (/playground)
error[E0423]: expected value, found struct `SomeTupleStruct`
  --> src/main.rs:22:13
   |
22 |     let _ = SomeTupleStruct.new();
   |             ^^^^^^^^^^^^^^^ constructor is not visible here due to private fields

error[E0423]: expected value, found struct `SomeRegularStruct`
  --> src/main.rs:23:13
   |
23 |     let _ = SomeRegularStruct.new();
   |             ^^^^^^^^^^^^^^^^^----
   |             |
   |             help: use the path separator to refer to an item: `SomeRegularStruct::new`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0423`.
error: could not compile `playground`

To learn more, run the command again with --verbose.

Ideally the first error should look like the second, i.e. suggest using SomeTupleStruct::new instead.

@jakobhellermann jakobhellermann added A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Mar 24, 2021
@jyn514 jyn514 added the A-resolve Area: Name/path resolution done by `rustc_resolve` specifically label Mar 25, 2021
@TaKO8Ki
Copy link
Member

TaKO8Ki commented Sep 27, 2021

@rustbot claim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints 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

Successfully merging a pull request may close this issue.

3 participants