diff options
| author | Oli Scherer <github333195615777966@oli-obk.de> | 2025-04-08 10:52:16 +0000 |
|---|---|---|
| committer | Oli Scherer <github333195615777966@oli-obk.de> | 2025-04-09 07:57:13 +0000 |
| commit | b2aa9d0620bbfa09f67c7bbfae2dd553d39bc90a (patch) | |
| tree | b8c764737740790a077faad8eda606d0c7580a4a /compiler/rustc_error_codes/src | |
| parent | c6c179662d5a6fc0520e05b5c0682dcfc7333f77 (diff) | |
| download | rust-b2aa9d0620bbfa09f67c7bbfae2dd553d39bc90a.tar.gz rust-b2aa9d0620bbfa09f67c7bbfae2dd553d39bc90a.zip | |
Remove some dead or leftover code related to rustc-intrinsic abi removal
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0622.md | 4 | ||||
| -rw-r--r-- | compiler/rustc_error_codes/src/lib.rs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0622.md b/compiler/rustc_error_codes/src/error_codes/E0622.md index e6ff949d3e9..9b8131a061e 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0622.md +++ b/compiler/rustc_error_codes/src/error_codes/E0622.md @@ -1,8 +1,10 @@ +#### Note: this error code is no longer emitted by the compiler. + An intrinsic was declared without being a function. Erroneous code example: -```compile_fail,E0622 +```no_run #![feature(intrinsics)] #![allow(internal_features)] diff --git a/compiler/rustc_error_codes/src/lib.rs b/compiler/rustc_error_codes/src/lib.rs index dfeef5a957d..2488d870899 100644 --- a/compiler/rustc_error_codes/src/lib.rs +++ b/compiler/rustc_error_codes/src/lib.rs @@ -397,7 +397,7 @@ E0618: 0618, E0619: 0619, E0620: 0620, E0621: 0621, -E0622: 0622, +E0622: 0622, // REMOVED: rustc-intrinsic ABI was removed E0623: 0623, E0624: 0624, E0625: 0625, |
