Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0252.rs
blob: 6b5163417bf8e624bd396bcb9d838c055b44d6fb [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
non_camel_case_types
)]
use
foo
::
baz
;
use
bar
::
baz
;
//~ ERROR E0252
mod
foo
{
pub
struct
baz
;
}
mod
bar
{
pub
mod
baz
{}
}
fn
main
()
{
}