Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
definition-reachable
/
nested-fn.rs
blob: 94f3520ed73563f2ff61d19523a997cf857acde6 [
file
] [
log
] [
blame
]
// Check that functions visible to macros through paths with >2 segments are
// considered reachable
//@ aux-build:field-method-macro.rs
//@ run-pass
extern
crate field_method_macro
;
fn
main
()
{
assert_eq
!(
field_method_macro
::
m
!(),
33
);
}