From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../rustc_error_codes/src/error_codes/E0323.md | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 compiler/rustc_error_codes/src/error_codes/E0323.md (limited to 'compiler/rustc_error_codes/src/error_codes/E0323.md') diff --git a/compiler/rustc_error_codes/src/error_codes/E0323.md b/compiler/rustc_error_codes/src/error_codes/E0323.md new file mode 100644 index 000000000..0bf42d17e --- /dev/null +++ b/compiler/rustc_error_codes/src/error_codes/E0323.md @@ -0,0 +1,46 @@ +An associated const was implemented when another trait item was expected. + +Erroneous code example: + +```compile_fail,E0323 +trait Foo { + type N; +} + +struct Bar; + +impl Foo for Bar { + const N : u32 = 0; + // error: item `N` is an associated const, which doesn't match its + // trait `` +} +``` + +Please verify that the associated const wasn't misspelled and the correct trait +was implemented. Example: + +``` +struct Bar; + +trait Foo { + type N; +} + +impl Foo for Bar { + type N = u32; // ok! +} +``` + +Or: + +``` +struct Bar; + +trait Foo { + const N : u32; +} + +impl Foo for Bar { + const N : u32 = 0; // ok! +} +``` -- cgit v1.2.3