summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/extern-multiple-copies/bar.rs
blob: c6b3595f677532f653c9ebc30f86673231877c1b (plain)
1
2
3
4
5
6
extern crate foo2; // foo2 first to exhibit the bug
extern crate foo1;

fn main() {
    /* ... */
}