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
I've defined more than one impl for an interface, and they are all in scope at the moment. Here are the errors I get:
src/libcore/str.rs:695:4: 695:13 error: mismatched types: expected `u8` but found `char` (types differ) src/libcore/str.rs:695 iter::all(s, { |c| r += escape_char(c); true }); ^~~~~~~~~ src/libcore/str.rs:695:4: 695:13 error: multiple applicable implementations in scope src/libcore/str.rs:695 iter::all(s, { |c| r += escape_char(c); true }); ^~~~~~~~~ src/libcore/str.rs:695:4: 695:13 error: multiple applicable implementations in scope src/libcore/str.rs:695 iter::all(s, { |c| r += escape_char(c); true }); ^~~~~~~~~ src/libcore/str.rs:695:4: 695:13 error: multiple applicable implementations in scope src/libcore/str.rs:695 iter::all(s, { |c| r += escape_char(c); true }); ^~~~~~~~~ src/libcore/str.rs:1020:8: 1020:17 error: mismatched types: expected `u8` but found `char` (types differ) src/libcore/str.rs:1020 ret iter::all(s, char::is_whitespace); ^~~~~~~~~ src/libcore/str.rs:1020:8: 1020:17 error: multiple applicable implementations in scope src/libcore/str.rs:1020 ret iter::all(s, char::is_whitespace); ^~~~~~~~~ src/libcore/str.rs:1020:8: 1020:17 error: multiple applicable implementations in scope src/libcore/str.rs:1020 ret iter::all(s, char::is_whitespace); ^~~~~~~~~ src/libcore/str.rs:1020:8: 1020:17 error: multiple applicable implementations in scope src/libcore/str.rs:1020 ret iter::all(s, char::is_whitespace); ^~~~~~~~~
Notice that I got four errors for each of two call sites, and three of those four are identical.
The text was updated successfully, but these errors were encountered:
b173485
Update CONTRIBUTING.md to point at the correct licence file (rust-lan…
85309be
…g#1803)
update rustc_driver examples (rust-lang#1803)
1755f0b
1e89c75
No branches or pull requests
I've defined more than one impl for an interface, and they are all in scope at the moment. Here are the errors I get:
Notice that I got four errors for each of two call sites, and three of those four are identical.
The text was updated successfully, but these errors were encountered: