2020-03-06 12:13:55 +01:00
|
|
|
// Check that functions visible to macros through paths with >2 segments are
|
2019-08-05 23:06:02 +01:00
|
|
|
// considered reachable
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:field-method-macro.rs
|
|
|
|
|
//@ run-pass
|
2019-08-05 23:06:02 +01:00
|
|
|
|
|
|
|
|
extern crate field_method_macro;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
assert_eq!(field_method_macro::m!(), 33);
|
|
|
|
|
}
|