Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
compile-fail
/
bad-expr-path2.rs
blob: a7f23df1c66365a494abefc7bc4300bcd874f82e [
file
] [
log
] [
blame
]
// error-pattern: unresolved name: m1::a
mod
m1
{
#[
legacy_exports
];
mod
a
{
#[
legacy_exports
];
}
}
fn
main
(
args
:
~[
str
])
{
log
(
debug
,
m1
::
a
);
}