mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
Add ignore to doc code
This commit is contained in:
@@ -8,7 +8,7 @@ The tracking issue for this feature is [#28796]
|
||||
|
||||
This had been a temporary alternative to the following impls:
|
||||
|
||||
```rust
|
||||
```rust,ignore
|
||||
impl<A, F> FnOnce for Box<F> where F: FnOnce<A> + ?Sized {}
|
||||
impl<A, F> FnMut for Box<F> where F: FnMut<A> + ?Sized {}
|
||||
impl<A, F> Fn for Box<F> where F: Fn<A> + ?Sized {}
|
||||
@@ -16,7 +16,7 @@ impl<A, F> Fn for Box<F> where F: Fn<A> + ?Sized {}
|
||||
|
||||
The impls are parallel to these (relatively old) impls:
|
||||
|
||||
```rust
|
||||
```rust,ignore
|
||||
impl<A, F> FnOnce for &mut F where F: FnMut<A> + ?Sized {}
|
||||
impl<A, F> FnMut for &mut F where F: FnMut<A> + ?Sized {}
|
||||
impl<A, F> Fn for &mut F where F: Fn<A> + ?Sized {}
|
||||
|
||||
Reference in New Issue
Block a user