14 lines
245 B
Rust
14 lines
245 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);
|
|
}
|