rust/tests/ui/hygiene/intercrate.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
363 B
Plaintext
Raw Normal View History

error: type `fn() -> u32 {foo::bar::f}` is private
2023-03-08 10:13:02 +01:00
--> $DIR/intercrate.rs:8:16
2018-04-07 17:28:31 +03:00
|
LL | assert_eq!(intercrate::foo::m!(), 1);
| ^^^^^^^^^^^^^^^^^^^^^ private type
2018-04-07 17:28:31 +03:00
|
= note: this error originates in the macro `intercrate::foo::m` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-04-07 17:28:31 +03:00
error: aborting due to previous error