1
Fork 0

made doc entry more consistant with others

This commit is contained in:
marcusdunn 2021-05-14 14:14:22 -07:00
parent ef65e091db
commit 2d74cd255d

View file

@ -4,6 +4,8 @@ The tracking issue for this feature is [#65490]
[#65490]: https://github.com/rust-lang/rust/issues/65490
------------------------
The `bindings_after_at` feature gate allows patterns of form `binding @ pat` to have bindings in `pat`.
@ -19,4 +21,3 @@ fn main() {
let point@ Point{x: px, y: py} = Point {x: 12, y: 34};
}
```