1 2 3 4 5 6 7 8 9 10
//! `#[table(name = ...)]` with a non-string literal must fail. use toolu_orm_macros::table; #[table(name = 1)] pub struct Widget { pub id: String, } fn main() {}