Skip to content

Commit b9eb2b6

Browse files
committed
Ignoring code examples that aren't actually compile-able
1 parent 58ef5a7 commit b9eb2b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chalk-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ essentially one of the following:
6969
This is the phase where we encode the rules of the trait system into logic. For
7070
example, if we have:
7171

72-
```rust
72+
```rust,ignore
7373
impl<T: Clone> Clone for Vec<T> {}
7474
```
7575

7676
We generate:
7777

78-
```rust
78+
```rust,ignore
7979
forall<T> { (Vec<T>: Clone) :- (T: Clone) }
8080
```
8181

0 commit comments

Comments
 (0)