Skip to content

Commit 7fd47ef

Browse files
committed
Clarify when const parameters need to be used.
1 parent 1c3659a commit 7fd47ef

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

src/items/generics.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,9 @@ fn foo<const N: usize>() -> Foo<N> { todo!() } // ERROR
171171
fn bar<const N: usize>() -> Foo<{ N }> { todo!() } // ok
172172
```
173173

174-
Unlike type and lifetime parameters, const parameters of types can be used without
175-
being mentioned inside of a parameterized type:
174+
Unlike type and lifetime parameters, const parameters can be declared without
175+
being used inside of a parameterized item, with the exception of
176+
implementations as described in [generic implementations]:
176177

177178
```rust,compile_fail
178179
// ok
@@ -182,6 +183,8 @@ enum Bar<const M: usize> { A, B }
182183
// ERROR: unused parameter
183184
struct Baz<T>;
184185
struct Biz<'a>;
186+
struct Unconstrained;
187+
impl<const N: usize> Unconstrained {}
185188
```
186189

187190
When resolving a trait bound obligation, the exhaustiveness of all
@@ -292,6 +295,7 @@ struct Foo<#[my_flexible_clone(unbounded)] H> {
292295
[enumerations]: enumerations.md
293296
[functions]: functions.md
294297
[function pointers]: ../types/function-pointer.md
298+
[generic implementations]: implementations.md#generic-implementations
295299
[higher-ranked lifetimes]: ../trait-bounds.md#higher-ranked-trait-bounds
296300
[implementations]: implementations.md
297301
[item declarations]: ../statements.md#item-declarations

src/items/implementations.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ is considered local.
180180

181181
## Generic Implementations
182182

183-
An implementation can take type and lifetime parameters, which can be used in
184-
the rest of the implementation. Type parameters declared for an implementation
185-
must be used at least once in either the trait or the implementing type of an
186-
implementation. Implementation parameters are written directly after the `impl`
187-
keyword.
183+
An implementation can take [generic parameters] which are written directly
184+
after the `impl` keyword. The parameters can be used in the rest of the
185+
implementation. Type and const parameters must be used at least once in either
186+
the trait or the implementing type of an implementation. Lifetime parameters
187+
do not need to be used unless they appear in an [associated type].
188188

189189
```rust
190190
# trait Seq<T> { fn dummy(&self, _: T) { } }
@@ -219,6 +219,7 @@ attributes].
219219
[trait]: traits.md
220220
[associated functions]: associated-items.md#associated-functions-and-methods
221221
[associated constants]: associated-items.md#associated-constants
222+
[associated type]: associated-items.md#associated-types
222223
[attributes]: ../attributes.md
223224
[`cfg`]: ../conditional-compilation.md
224225
[`deprecated`]: ../attributes/diagnostics.md#the-deprecated-attribute
@@ -230,3 +231,4 @@ attributes].
230231
[local type]: ../glossary.md#local-type
231232
[fundamental types]: ../glossary.md#fundamental-type-constructors
232233
[uncovered type]: ../glossary.md#uncovered-type
234+
[generic parameters]: generics.md

0 commit comments

Comments
 (0)