diff options
| author | mu001999 <mu001999@outlook.com> | 2023-05-17 16:59:39 +0800 |
|---|---|---|
| committer | mu001999 <mu001999@outlook.com> | 2023-05-17 16:59:39 +0800 |
| commit | db645124221a1e2d3e70b14fbedef019e036c066 (patch) | |
| tree | 779d30fa51059b0064d96fc2a0d03effeb2b1080 /compiler/rustc_errors/src | |
| parent | bc888958c9e1fdde09791f15d3421bdc3b6d7d29 (diff) | |
| download | rust-db645124221a1e2d3e70b14fbedef019e036c066.tar.gz rust-db645124221a1e2d3e70b14fbedef019e036c066.zip | |
Emits E0599 when meeting MyTrait::missing_method
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 22c41f7b93f..0f360473619 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -478,6 +478,7 @@ pub enum StashKey { /// FRU syntax MaybeFruTypo, CallAssocMethod, + TraitMissingMethod, } fn default_track_diagnostic(d: &mut Diagnostic, f: &mut dyn FnMut(&mut Diagnostic)) { |
