rust/tests/ui/static/static-method-privacy.stderr

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

13 lines
395 B
Plaintext
Raw Normal View History

2020-03-05 03:03:15 +00:00
error[E0624]: associated function `new` is private
--> $DIR/static-method-privacy.rs:9:19
2018-08-08 12:28:26 +00:00
|
LL | fn new() -> S { S }
| ------------- private associated function defined here
...
2019-03-09 12:03:44 +00:00
LL | let _ = a::S::new();
| ^^^ private associated function
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0624`.