Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
blind
/
blind-item-block-middle.rs
blob: 6cd3f3bd412b80a7aadbecc5d8543493b0035791 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
non_camel_case_types
)]
mod
foo
{
pub
struct
bar
;
}
fn
main
()
{
let
bar
=
5
;
//~^ ERROR mismatched types
use
foo
::
bar
;
}