mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
432 B
Plaintext
16 lines
432 B
Plaintext
error[E0599]: no function or associated item named `has` found for trait `HasNot`
|
|
--> $DIR/issue-111312.rs:10:13
|
|
|
|
|
LL | HasNot::has();
|
|
| ^^^ function or associated item not found in `HasNot`
|
|
|
|
|
note: `Has` defines an item `has`
|
|
--> $DIR/issue-111312.rs:3:1
|
|
|
|
|
LL | trait Has {
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|