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

Error suggests acessing tuple element on () type #110091

Closed
fintelia opened this issue Apr 8, 2023 · 0 comments · Fixed by #110096
Closed

Error suggests acessing tuple element on () type #110091

fintelia opened this issue Apr 8, 2023 · 0 comments · Fixed by #110096
Assignees
Labels
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.

Comments

@fintelia
Copy link
Contributor

fintelia commented Apr 8, 2023

Code

fn main() {
    let x = ();
    println!("{}", x[0])
}

Current output

error[E0608]: cannot index into a value of type `()`
 --> src/main.rs:3:20
  |
3 |     println!("{}", x[0])
  |                    ^^^^ help: to access tuple elements, use: `x.0`

Desired output

No response

Rationale and extra context

No response

Other cases

No response

Anything else?

No response

@fintelia fintelia 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 Apr 8, 2023
@compiler-errors compiler-errors self-assigned this Apr 8, 2023
@bors bors closed this as completed in eed27ac Apr 9, 2023
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 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.

2 participants