add rust,ignore to code snippets

This commit is contained in:
Niko Matsakis 2018-08-07 08:38:21 -04:00 committed by Who? Me?!
parent 135b38859f
commit e0df7b587b
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ type.
In the language they are expressed via
```
```rust,ignore
existential type Foo: Bar;
```
@ -17,7 +17,7 @@ the `Bar` trait's interface.
Since there needs to be a concrete background type, you can currently
express that type by using the existential type in a "defining use site".
```
```rust,ignore
struct Struct;
impl Bar for Struct { /* stuff */ }
fn foo() -> Foo {