]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/import-from-rename.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[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 }