diff options
| author | bors <bors@rust-lang.org> | 2022-10-25 18:02:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-10-25 18:02:23 +0000 |
| commit | a46ccba167086f0b562eb78403f7446b0fed5f65 (patch) | |
| tree | 657acfd56be3293586f6d81d3e35ed543137b54c /compiler/rustc_plugin_impl/src | |
| parent | cfd99a2bbe83ae35ad0eb9d963ca97cf6c34471a (diff) | |
| parent | 5a5a3e4ef4b4c450991459415c0c7a963ba2d278 (diff) | |
| download | rust-a46ccba167086f0b562eb78403f7446b0fed5f65.tar.gz rust-a46ccba167086f0b562eb78403f7446b0fed5f65.zip | |
Auto merge of #2618 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'compiler/rustc_plugin_impl/src')
| -rw-r--r-- | compiler/rustc_plugin_impl/src/errors.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_plugin_impl/src/errors.rs b/compiler/rustc_plugin_impl/src/errors.rs index 07ce92a9b26..e6a7fc86bee 100644 --- a/compiler/rustc_plugin_impl/src/errors.rs +++ b/compiler/rustc_plugin_impl/src/errors.rs @@ -4,7 +4,7 @@ use rustc_macros::Diagnostic; use rustc_span::Span; #[derive(Diagnostic)] -#[diag(plugin_impl::load_plugin_error)] +#[diag(plugin_impl_load_plugin_error)] pub struct LoadPluginError { #[primary_span] pub span: Span, @@ -12,7 +12,7 @@ pub struct LoadPluginError { } #[derive(Diagnostic)] -#[diag(plugin_impl::malformed_plugin_attribute, code = "E0498")] +#[diag(plugin_impl_malformed_plugin_attribute, code = "E0498")] pub struct MalformedPluginAttribute { #[primary_span] #[label] |
