Files
rust/tests/ui/issues/issue-4333.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
160 B
Rust
Raw Normal View History

//@ run-pass
#![allow(unused_must_use)]
use std::io;
pub fn main() {
2019-05-28 14:47:21 -04:00
let stdout = &mut io::stdout() as &mut dyn io::Write;
stdout.write(b"Hello!");
2013-03-28 19:15:24 -07:00
}