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/E0109.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 compiler/rustc_error_codes/src/error_codes/E0109.md (limited to 'compiler/rustc_error_codes/src/error_codes/E0109.md') diff --git a/compiler/rustc_error_codes/src/error_codes/E0109.md b/compiler/rustc_error_codes/src/error_codes/E0109.md new file mode 100644 index 000000000..2eab9725a --- /dev/null +++ b/compiler/rustc_error_codes/src/error_codes/E0109.md @@ -0,0 +1,22 @@ +You tried to provide a generic argument to a type which doesn't need it. + +Erroneous code example: + +```compile_fail,E0109 +type X = u32; // error: type arguments are not allowed for this type +type Y = bool<'static>; // error: lifetime parameters are not allowed on + // this type +``` + +Check that you used the correct argument and that the definition is correct. + +Example: + +``` +type X = u32; // ok! +type Y = bool; // ok! +``` + +Note that generic arguments for enum variant constructors go after the variant, +not after the enum. For example, you would write `Option::None::`, +rather than `Option::::None`. -- cgit v1.2.3