]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js/struct-like-variant.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / rustdoc-js / struct-like-variant.rs
1 #![crate_name = "struct_like_variant"]
2
3 pub enum Enum {
4     Bar {
5         /// This is a name.
6         name: String
7     }
8 }