rust/tests/run-make-fulldeps/save-analysis/krate2.rs

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

9 lines
146 B
Rust
Raw Normal View History

2016-11-22 18:35:07 -06:00
#![ crate_name = "krate2" ]
#![ crate_type = "lib" ]
use std::io::Write;
pub fn hello() {
std::io::stdout().write_all(b"hello world!\n");
}