about summary refs log tree commit diff
path: root/tests/run-make/extern-multiple-copies/bar.rs
blob: aa0bee77cb29678a40f35f96b00afb839b3f3d6e (plain)
1
2
3
4
5
6
extern crate foo1;
extern crate foo2; // foo2 first to exhibit the bug

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