File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 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:
2828
2929Where ` main.rs ` contains:
3030
31- ``` rust
31+ ``` rust ignore
3232#![debugger_visualizer(natvis_file = " ../Rectangle.natvis" )]
3333struct FancyRect {
3434 pub x : f32 ,
@@ -39,7 +39,7 @@ struct FancyRect {
3939
4040fn main () {
4141 let fancy_rect = FancyRect :: new (10.0 , 10.0 , 5.0 , 5.0 );
42- Ok (())
42+ Ok (());
4343}
4444```
4545
@@ -101,7 +101,7 @@ Consider a crate called `foobar` with this directory structure:
101101
102102Where ` main.rs ` contains:
103103
104- ``` rust
104+ ``` rust ignore
105105#![debugger_visualizer(gdb_script_file = " ../bar.py" )]
106106mod person {
107107 pub struct Person {
@@ -114,7 +114,7 @@ use person::Person;
114114
115115fn main () {
116116 let bob = Person :: new (String :: from (" Bob" ), 10 );
117- Ok (())
117+ Ok (());
118118}
119119```
120120
You can’t perform that action at this time.
0 commit comments