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

24 lines
639 B
Plaintext
Raw Normal View History

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