]> git.proxmox.com Git - rustc.git/blame - tests/ui/resolve/blind-item-local-shadow.rs
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / resolve / blind-item-local-shadow.rs
CommitLineData
416331ca
XL
1// run-pass
2
0bf4aa26
XL
3#![allow(dead_code)]
4#![allow(unused_imports)]
85aaf69f
SL
5mod bar {
6 pub fn foo() -> bool { true }
7}
223e47cc
LB
8
9fn main() {
85aaf69f
SL
10 let foo = || false;
11 use bar::foo;
85aaf69f 12 assert_eq!(foo(), false);
223e47cc 13}