diff options
| author | christopherdumas <christopherdumas@me.com> | 2015-09-05 17:07:37 -0700 |
|---|---|---|
| committer | christopherdumas <christopherdumas@me.com> | 2015-09-05 17:07:37 -0700 |
| commit | 5fa6095f2cc17a8476fa7b0e898a99fb6e3861ef (patch) | |
| tree | 05bba834b78d88261506672885eed3c78b4d1839 | |
| parent | a85bc05280b3e5e08d971cfa61458e8c4ee7d950 (diff) | |
| download | rust-5fa6095f2cc17a8476fa7b0e898a99fb6e3861ef.tar.gz rust-5fa6095f2cc17a8476fa7b0e898a99fb6e3861ef.zip | |
I think I found the bug! I was missing a comma.
| -rw-r--r-- | src/librustc_typeck/diagnostics.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs index 31e5b4d9035..1e09a376445 100644 --- a/src/librustc_typeck/diagnostics.rs +++ b/src/librustc_typeck/diagnostics.rs @@ -1551,7 +1551,7 @@ impelementation for: ``` impl SomeTypeThatDoesntExist { } ``` -"## +"##, E0119: r##" There are conflicting trait implementations for the same type. @@ -3214,7 +3214,7 @@ register_diagnostics! { E0090, E0103, // @GuillaumeGomez: I was unable to get this error, try your best! E0104, -// E0118, + E0118, // E0123, // E0127, // E0129, |
