]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/style/features/traits/objects.md
Changed issue number to 36105
[rust.git] / src / doc / style / features / traits / objects.md
index 38494a9b9bc3c02a0b7f529849c1584990e5bb23..34712ed1ae7f131c414aa9ae8ac67cb10947ab50 100644 (file)
@@ -6,7 +6,7 @@ Trait objects are useful primarily when _heterogeneous_ collections of objects
 need to be treated uniformly; it is the closest that Rust comes to
 object-oriented programming.
 
-```rust
+```rust,ignore
 struct Frame  { ... }
 struct Button { ... }
 struct Label  { ... }