Update src/early-late-bound.md
This commit is contained in:
parent
7a8d862e0b
commit
ec67371c7a
|
|
@ -15,7 +15,7 @@ with this topic.
|
||||||
## What does it mean for parameters to be early or late bound
|
## What does it mean for parameters to be early or late bound
|
||||||
|
|
||||||
All function definitions conceptually have a ZST (this is represented by `TyKind::FnDef` in rustc).
|
All function definitions conceptually have a ZST (this is represented by `TyKind::FnDef` in rustc).
|
||||||
The only generics on this zst are the early bound parameters of the function definition. e.g.
|
The only generics on this ZST are the early bound parameters of the function definition. e.g.
|
||||||
```rust
|
```rust
|
||||||
fn foo<'a>(_: &'a u32) {}
|
fn foo<'a>(_: &'a u32) {}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue