We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is an issue with this test case it was issue-1773.rs but that issue references different code.
I tried this code:
#[lang = "sized"] pub trait Sized {} trait Foo<T> { type A; fn test(a: Self::A) -> Self::A { a } } struct Bar<T>(T); impl<T> Foo<T> for Bar<i32> { type A = T; } fn main() { let a; a = Bar(123); let b; b = Bar::test(a.0); }
No response
The current behavior is... test.rs:21:9: error: type annotations needed [E0282] 21 | let b; | ^ test.rs:22:5: error: type annotations needed [E0282] 22 | b = Bar::test(a.0); | ^ test.rs:22:14: error: type annotations needed [E0282] 22 | b = Bar::test(a.0); | ^~~~ crab1: error: type annotations needed [E0282] test.rs:22:14: error: type annotations needed [E0282] crab1: error: type annotations needed [E0282] crab1: error: type annotations needed [E0282]
I expected to see...
compiles without error
0e6135c
The text was updated successfully, but these errors were encountered:
philberty
No branches or pull requests
Summary
There is an issue with this test case it was issue-1773.rs but that issue references different code.
Reproducer
I tried this code:
Godbolt link
No response
Actual behavior
The current behavior is...
test.rs:21:9: error: type annotations needed [E0282]
21 | let b;
| ^
test.rs:22:5: error: type annotations needed [E0282]
22 | b = Bar::test(a.0);
| ^
test.rs:22:14: error: type annotations needed [E0282]
22 | b = Bar::test(a.0);
| ^~~~
crab1: error: type annotations needed [E0282]
test.rs:22:14: error: type annotations needed [E0282]
crab1: error: type annotations needed [E0282]
crab1: error: type annotations needed [E0282]
Expected behavior
I expected to see...
compiles without error
GCC Version
0e6135c
The text was updated successfully, but these errors were encountered: