Add explanatory text for error E0599

Add a text description of this error instead of just example error code
This commit is contained in:
greg 2017-10-17 21:43:02 -07:00
parent f6d7514545
commit 23bf3300ad

View File

@ -3986,6 +3986,10 @@ details.
"##,
E0599: r##"
This error occurs when a method is used on a type which doesn't implement it:
Erroneous code example:
```compile_fail,E0599
struct Mouth;