Semicolon after definition
Closed this issue · 1 comments
Antikyth commented
xrb/xrbk_macro/src/metadata.rs
Lines 15 to 32 in 56288ac
There needs to be a semicolon after a unit or tuple struct (Items::Unit
or Items::Unnamed
), but not after an enum or a 'normal struct' (Enum
or Items::Named
).
e.g.
pub struct UnitStruct; /* semicolon */
pub struct TupleStruct(u32, u32); /* semicolon */
pub struct NormalStruct {
field1: u32,
field1: u32,
} /* no semicolon */
pub enum Enum {
UnitVariant, /* no semicolon */
TupleVariant(u32, u32), /* no semicolon */
StructVariant {
field1: u32,
field1: u32,
}, /* no semicolon */
} /* no semicolon */
Antikyth commented
Completed (long ago...)