]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/import-glob-rename.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[rustc.git] / tests / ui / parser / import-glob-rename.rs
1 //@ error-pattern:expected
2
3 use foo::* as baz;
4
5 mod foo {
6 pub fn bar() {}
7 }
8
9 fn main() {
10 }