2018-08-08 07:28:26 -05:00
|
|
|
error[E0573]: expected type, found module `a`
|
2021-02-08 16:15:45 -06:00
|
|
|
--> $DIR/impl-for-module.rs:7:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-03-21 09:03:58 -05:00
|
|
|
LL | trait A {
|
|
|
|
| ------- similarly named trait `A` defined here
|
|
|
|
...
|
|
|
|
LL | impl A for a {
|
|
|
|
| ^ help: a trait with a similar name exists: `A`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-10-09 07:19:48 -05:00
|
|
|
For more information about this error, try `rustc --explain E0573`.
|