summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-45829/rename.rs
blob: 1c45956c66a3f9f6fefaa2d1e150da9d55e29984 (plain)
1
2
3
4
5
6
7
use core;
use std as core;
//~^ ERROR is defined multiple times

fn main() {
    1 + 1;
}