rust/tests/ui/issues/issue-53498.stderr

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

13 lines
389 B
Plaintext
Raw Normal View History

2020-03-05 03:03:15 +00:00
error[E0624]: associated function `foo` is private
--> $DIR/issue-53498.rs:16:27
2019-05-11 01:22:25 +00:00
|
LL | fn foo() {}
| -------- private associated function defined here
...
2019-05-11 01:22:25 +00:00
LL | test::Foo::<test::B>::foo();
| ^^^ private associated function
2019-05-11 01:22:25 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0624`.