1 2 3 4 5 6 7 8 9 10 11 12
use codama_macros::codama; #[codama(export)] pub type Test = u64; #[codama(export())] pub type TestEmpty = u64; #[codama(export(CodamaType, CodamaAccount))] pub type TestMultiple = u64; fn main() {}