1 2 3 4 5 6 7 8 9 10
use type_state_builder::TypeStateBuilder; #[derive(TypeStateBuilder)] #[builder(const, impl_into)] struct InvalidStruct { // This should be an error: const and impl_into are incompatible name: String, } fn main() {}