1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-04 03:25:08 +02:00

Ignore code block that deliberately contains an error

This commit is contained in:
Fabian Bornhofen 2023-01-09 17:36:58 +01:00
parent 3a4d5d4c26
commit 2ec7bdf15d

View File

@ -29,7 +29,7 @@ fn main() {
In the above example, try the following:
* Move the declaration of `p2` and `p3` into a a new scope (`{ ... }`), resulting in the following code:
```rust,editable
```rust,ignore
#[derive(Debug)]
struct Point(i32, i32);