Skip to content

Commit b479439

Browse files
committed
---
yaml --- r: 205243 b: refs/heads/beta c: a59de37 h: refs/heads/master i: 205241: 7c9772a 205239: a4c569b v: v3
1 parent 17d3996 commit b479439

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3030
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3131
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
32-
refs/heads/beta: f0213d8ffb128a16f94af7ee985dc61484596163
32+
refs/heads/beta: a59de37e99060162a2674e3ff45409ac73595c0e
3333
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3434
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3535
refs/heads/tmp: 9eb94a869b7b8543fa1cf91b6a8cb4b19c61f1d0

branches/beta/src/doc/trpl/associated-constants.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
With the `associated_consts` feature, you can define constants like this:
44

5-
```rust
5+
```rust,ignore
66
#![feature(associated_consts)]
77
88
trait Foo {
@@ -41,7 +41,7 @@ error: not all trait items implemented, missing: `ID` [E0046]
4141

4242
A default value can be implemented as well:
4343

44-
```rust
44+
```rust,ignore
4545
#![feature(associated_consts)]
4646
4747
trait Foo {
@@ -68,7 +68,7 @@ add our own definition.
6868
Associated constants don’t have to be associated with a trait. An `impl` block
6969
for a `struct` works fine too:
7070

71-
```rust
71+
```rust,ignore
7272
#![feature(associated_consts)]
7373
7474
struct Foo;

0 commit comments

Comments
 (0)