rust/tests/run-make-fulldeps/crate-hash-rustc-version/b.rs

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

9 lines
107 B
Rust
Raw Normal View History

extern crate a;
use a::foo;
fn main() {
let x = String::from("Hello");
println!("{}", foo(x));
}