]> git.lizzy.rs Git - rust.git/blob - tests/ui/blind/blind-item-block-middle.rs
Rollup merge of #104965 - zacklukem:p-option-as_ref-docs, r=scottmcm
[rust.git] / tests / ui / blind / blind-item-block-middle.rs
1 #![allow(non_camel_case_types)]
2
3 mod foo { pub struct bar; }
4
5 fn main() {
6     let bar = 5;
7     //~^ ERROR mismatched types
8     use foo::bar;
9 }