summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/import-from-rename.rs
blob: 27425a3c99a351a9e53726445586c1fefbd94318 (plain)
1
2
3
4
5
6
7
8
9
10
// error-pattern:expected

use foo::{bar} as baz;

mod foo {
    pub fn bar() {}
}

fn main() {
}