]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reexport-should-still-link.rs
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / reexport-should-still-link.rs
1 // run-pass
2 // aux-build:reexport-should-still-link.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate reexport_should_still_link as foo;
7
8 pub fn main() {
9     foo::bar();
10 }