]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/extern-multiple-copies/bar.rs
Rollup merge of #104181 - jackh726:known-bug-tests, r=Mark-Simulacrum
[rust.git] / src / test / run-make-fulldeps / extern-multiple-copies / bar.rs
1 extern crate foo2; // foo2 first to exhibit the bug
2 extern crate foo1;
3
4 fn main() {
5     /* ... */
6 }