rust/src/test/ui/error-codes/E0449.stderr

24 lines
639 B
Plaintext
Raw Normal View History

2018-02-07 21:35:35 -06:00
error[E0449]: unnecessary visibility qualifier
--> $DIR/E0449.rs:17:1
|
2018-02-22 18:42:32 -06:00
LL | pub impl Bar {} //~ ERROR E0449
2018-02-14 07:30:15 -06:00
| ^^^ `pub` not needed here
2018-02-07 21:35:35 -06:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: unnecessary visibility qualifier
--> $DIR/E0449.rs:19:1
|
2018-02-22 18:42:32 -06:00
LL | pub impl Foo for Bar { //~ ERROR E0449
2018-02-14 07:30:15 -06:00
| ^^^ `pub` not needed here
2018-02-07 21:35:35 -06:00
error[E0449]: unnecessary visibility qualifier
--> $DIR/E0449.rs:20:5
|
2018-02-22 18:42:32 -06:00
LL | pub fn foo() {} //~ ERROR E0449
2018-02-14 07:30:15 -06:00
| ^^^ `pub` not needed here
2018-02-07 21:35:35 -06:00
error: aborting due to 3 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0449"