]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/import-from-rename.rs
Rollup merge of #92024 - pcwalton:per-codegen-unit-names, r=davidtwco
[rust.git] / src / test / ui / parser / import-from-rename.rs
1 // error-pattern:expected
2
3 use foo::{bar} as baz;
4
5 mod foo {
6     pub fn bar() {}
7 }
8
9 fn main() {
10 }