rust/tests/ui/imports/issue-45829/rename-extern.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
185 B
Rust
Raw Normal View History

2018-11-05 04:00:03 +00:00
// aux-build:issue-45829-a.rs
// aux-build:issue-45829-b.rs
extern crate issue_45829_a;
extern crate issue_45829_b as issue_45829_a;
2018-11-27 09:56:36 +00:00
//~^ ERROR is defined multiple times
fn main() {}