This does not work
#[doc = std::concat!("A", "has a", "B")]
#[derive(uniffi::Enum)]
pub enum A {
B,
}
but this does (without the derive)
#[doc = std::concat!("C", "has a", "D")]
pub enum C {
D,
}
and this also works (using only a trivial string for the doc)
#[doc = "A has a B"]
#[derive(uniffi::Enum)]
pub enum A {
B,
}