Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
definition-reachable
/
private-use.rs
blob: 97517fcb9e27ca2f0dc96190a238b3d9118193e5 [
file
] [
log
] [
blame
]
// Check that private use statements can be used by
//@ run-pass
//@ aux-build:private-use-macro.rs
extern
crate private_use_macro
;
fn
main
()
{
assert_eq
!(
private_use_macro
::
m
!(),
57
);
}