diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-10-18 08:13:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-18 08:13:31 +0200 |
| commit | adde016d3877976f9fbdcf1db174d5cd8aa59088 (patch) | |
| tree | 3655bfb70252e4838cd95f424bc734a6bd60b3f6 | |
| parent | 2fd765c1d9f5dd7dd0592748cb98815910b9ed60 (diff) | |
| parent | b87a0b06c75808a7ff99177db8000bb4a9161d8e (diff) | |
| download | rust-adde016d3877976f9fbdcf1db174d5cd8aa59088.tar.gz rust-adde016d3877976f9fbdcf1db174d5cd8aa59088.zip | |
Rollup merge of #89993 - pierwill:patch-1, r=Mark-Simulacrum
Remove dead code from `compiletest::json` Currently getting a dead code warning on master. Might make sense to remove.
| -rw-r--r-- | src/tools/compiletest/src/json.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tools/compiletest/src/json.rs b/src/tools/compiletest/src/json.rs index dc6d67983c5..a5ff779a4ab 100644 --- a/src/tools/compiletest/src/json.rs +++ b/src/tools/compiletest/src/json.rs @@ -74,8 +74,6 @@ struct DiagnosticSpanMacroExpansion { struct DiagnosticCode { /// The code itself. code: String, - /// An explanation for the code. - explanation: Option<String>, } pub fn rustfix_diagnostics_only(output: &str) -> String { |
