1
Fork 0
rust/src/test/ui/suggestions/dont-suggest-private-trait-method.stderr

13 lines
440 B
Text
Raw Normal View History

error[E0599]: no function or associated item named `new` found for type `T` in the current scope
--> $DIR/dont-suggest-private-trait-method.rs:14:5
|
2018-02-23 03:42:32 +03:00
LL | struct T;
| --------- function or associated item `new` not found for this
...
2018-02-23 03:42:32 +03:00
LL | T::new();
| ^^^^^^ function or associated item not found in `T`
error: aborting due to previous error
2018-02-19 21:40:25 +01:00
If you want more information on this error, try using "rustc --explain E0599"