2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_must_use)]
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-02-25 01:27:20 -06:00
|
|
|
use std::io;
|
2013-05-24 21:35:29 -05:00
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() {
|
2015-02-25 01:27:20 -06:00
|
|
|
let stdout = &mut io::stdout() as &mut io::Write;
|
2014-06-18 13:25:36 -05:00
|
|
|
stdout.write(b"Hello!");
|
2013-03-28 21:15:24 -05:00
|
|
|
}
|