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
364 B
Plaintext
Raw Normal View History

error: type `fn() -> u32 {foo::bar::f}` is private
2018-12-25 08:56:47 -07:00
--> $DIR/intercrate.rs:10: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