]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js/struct-like-variant.rs
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[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 }