]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/import-from-rename.rs
Auto merge of #55519 - fhartwig:hashmap-index-example, r=Centril
[rust.git] / src / test / ui / parser / import-from-rename.rs
1 // compile-flags: -Z parse-only
2
3 // error-pattern:expected
4
5 use foo::{bar} as baz;
6
7 mod foo {
8     pub fn bar() {}
9 }
10
11 fn main() {
12 }