/// enum comment
#[tsync]#[serde(rename_all ="UPPERCASE", tag ="type")]enumEnumTest{/// enum property comment
One,/// enum tuple comment
Two(StructTest),/// enum struct comment
Three {/// enum struct property comment
id:String,},}#[tsync]/// struct comment
structStructTest{/// struct field comment
name: String,
}#[tsync]/// type comment
typeTypeTest=String;#[tsync]/// const comment
constCONST_TEST:&str="test";// not a doc comment test
// (notice the two forward slashes compared to for the rest of the tests)
structNotACommentTest{// not a doc comment
name: String,
}