]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/crate-hash-rustc-version/b.rs
Rollup merge of #107097 - tmiasko:ssa, r=cjgillot
[rust.git] / tests / run-make-fulldeps / crate-hash-rustc-version / b.rs
1 extern crate a;
2
3 use a::foo;
4
5 fn main() {
6     let x = String::from("Hello");
7     println!("{}", foo(x));
8 }