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
This code segfaults:
use std::io; fn foo(mut a: ~Writer) { a.write(bytes!("Hello\n")); } fn main() { let out = io::stdout(); foo(~out); }
The text was updated successfully, but these errors were encountered:
Nominating, this is very bad.
Sorry, something went wrong.
This code works:
use std::io; fn foo(mut a: ~Writer) { a.write(bytes!("Hello\n")); } fn main() { foo(~io::stdout()); }
Assigning to P-high.
auto merge of #11525 : luqmana/rust/trait-coercions, r=pcwalton
b11c3e3
Fixes 2 annoying issues with implicit trait object coercion: #11481 & #11197.
d42e758
Auto merge of rust-lang#13110 - DesmondWillowbrook:issue-11197, r=jon…
5c52e05
…as-schievink fix: make "Extract type as type alias" assist work with const generics in array fixes rust-lang#11197
No branches or pull requests
This code segfaults:
The text was updated successfully, but these errors were encountered: