mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
243 B
Rust
14 lines
243 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
use std::io::{self, Write};
|
|
|
|
fn f(wr: &mut dyn Write) {
|
|
wr.write_all(b"hello").ok().expect("failed");
|
|
}
|
|
|
|
fn main() {
|
|
let mut wr = Box::new(io::stdout()) as Box<dyn Write>;
|
|
f(&mut wr);
|
|
}
|