File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Consider a crate with this directory structure:
28
28
29
29
Where ` main.rs ` contains:
30
30
31
- ``` rust
31
+ ``` rust ignore
32
32
#![debugger_visualizer(natvis_file = " ../Rectangle.natvis" )]
33
33
struct FancyRect {
34
34
pub x : f32 ,
@@ -39,7 +39,7 @@ struct FancyRect {
39
39
40
40
fn main () {
41
41
let fancy_rect = FancyRect :: new (10.0 , 10.0 , 5.0 , 5.0 );
42
- Ok (())
42
+ Ok (());
43
43
}
44
44
```
45
45
@@ -101,7 +101,7 @@ Consider a crate called `foobar` with this directory structure:
101
101
102
102
Where ` main.rs ` contains:
103
103
104
- ``` rust
104
+ ``` rust ignore
105
105
#![debugger_visualizer(gdb_script_file = " ../bar.py" )]
106
106
mod person {
107
107
pub struct Person {
@@ -114,7 +114,7 @@ use person::Person;
114
114
115
115
fn main () {
116
116
let bob = Person :: new (String :: from (" Bob" ), 10 );
117
- Ok (())
117
+ Ok (());
118
118
}
119
119
```
120
120
You can’t perform that action at this time.
0 commit comments