]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/metadata-flag-frobs-symbols/bar.rs
Rollup merge of #106605 - notriddle:notriddle/outdated-rustbook, r=GuillaumeGomez
[rust.git] / tests / run-make-fulldeps / metadata-flag-frobs-symbols / bar.rs
1 extern crate foo1;
2 extern crate foo2;
3
4 fn main() {
5     let a = foo1::foo();
6     let b = foo2::foo();
7     assert!(a as *const _ != b as *const _);
8 }