Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0252.rs
blob: 6b5163417bf8e624bd396bcb9d838c055b44d6fb [
file
] [
log
] [
blame
]
#![
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
()
{
}