Skip to content

Commit a628418

Browse files
committed
ignore various sample tests
1 parent a72a068 commit a628418

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/borrow_check/moves_and_initialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to that set; moving from a local variable removes it from that set.
1717

1818
Consider this example:
1919

20-
```rust
20+
```rust,ignore
2121
fn foo() {
2222
let a: Vec<u32>;
2323

src/borrow_check/moves_and_initialization/move_paths.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ In reality, it's not enough to track initialization at the granularity
44
of local variables. Rust also allows us to do moves and initialization
55
at the field granularity:
66

7-
```rust
7+
```rust,ignore
88
fn foo() {
99
let a: (Vec<u32>, Vec<u32>) = (vec![22], vec![44]);
1010
@@ -41,7 +41,7 @@ the [`move_paths` field of the `MoveData`][move_paths]. For example,
4141
to convert a [`MovePathIndex`] `mpi` into a MIR [`Place`], you might
4242
access the [`MovePath::place`] field like so:
4343

44-
```rust
44+
```rust,ignore
4545
move_data.move_paths[mpi].place
4646
```
4747

0 commit comments

Comments
 (0)