clean up E0393 explanation

This commit is contained in:
Guillaume Gomez 2020-03-09 09:31:15 +01:00
parent 823ff8cf13
commit c06fa0be82

View File

@ -1,5 +1,6 @@
A type parameter which references `Self` in its default value was not specified.
Example of erroneous code:
Erroneous code example:
```compile_fail,E0393
trait A<T=Self> {}