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
trait MyTY { fn my_y(&self) -> uint; } trait MyTXY: MyTY { fn my_x(&self) -> uint; } fn bar(mt: &MyTXY) { mt.my_x(); mt.my_y(); } fn main() { }
The text was updated successfully, but these errors were encountered:
Duplicate of #4100.
Sorry, something went wrong.
Auto merge of rust-lang#6069 - alex-700:redundant-pattern-matching-in…
29b12f2
…-macro, r=Manishearth Forbid redundant_pattern_matching triggering in macros fixes rust-lang#6065 changelog: forbid redundant_pattern_matching triggering in macros
No branches or pull requests
The text was updated successfully, but these errors were encountered: