]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/import-from-rename.rs
Update unsuspicious file list
[rustc.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 }