diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-03-08 16:53:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-08 16:53:41 +0100 |
| commit | 22d6cc7287cd70a6a225aa5138c6b4d7769d2ad7 (patch) | |
| tree | 51414163ec22793b5fe0c77eda523f2dc275e3a1 /src/librustc_error_codes/error_codes | |
| parent | c13d296e72ce0d87cc105e52e98f16ad961d3060 (diff) | |
| parent | 13d5ee1c4f36cc05e87b23657fa934fe2d02f73c (diff) | |
| download | rust-22d6cc7287cd70a6a225aa5138c6b4d7769d2ad7.tar.gz rust-22d6cc7287cd70a6a225aa5138c6b4d7769d2ad7.zip | |
Rollup merge of #69771 - GuillaumeGomez:cleanup-e0390, r=Dylan-DPC
Cleanup E0390 explanation r? @Dylan-DPC
Diffstat (limited to 'src/librustc_error_codes/error_codes')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0390.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0390.md b/src/librustc_error_codes/error_codes/E0390.md index 9d05740d6f5..ecc5b5568ad 100644 --- a/src/librustc_error_codes/error_codes/E0390.md +++ b/src/librustc_error_codes/error_codes/E0390.md @@ -1,4 +1,6 @@ -You tried to implement methods for a primitive type. Erroneous code example: +A method was implemented on a primitive type. + +Erroneous code example: ```compile_fail,E0390 struct Foo { |
