-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntax collision with Type Ascription #11
Comments
Type Ascription indeed conflicts with the style syntax in macros. macro_rules! cell {
() => ($crate::cell::Cell::default());
($value:expr) => ($crate::cell::Cell::new(&$value.to_string()));
($style:ident : $value:expr) => (cell!($value).style_spec(stringify!($style)));
}
Do you think this is expected and I should change the macro syntax, or should I report this as an |
I have no idea. Though I suppose this might affect several crates. This issue already shows up as a mention in the linked RFC issue. |
I also think it will affect several crates. Maybe I should wait a bit and see, or do you need an urgent fix ? |
Nope no biggy. I just wanted to mention this to you. Worst case: you have to change your api. Best case: the compiler learns to distinguish. |
By the way @hoodie, thank you for mentionning this issue. I don't play that much with nightly rust for now. |
any new info? |
I would consider preemptively changing the macro syntax of this crate. This could still be a valid 0.6.0 release. |
That's also what I was thinking about. This won't be a big code change. |
FYI, the crate has been fixed for nightly issue. I changed the macro syntax, and it's now available on crates.io in |
👍 |
😄 A thumb is all you need |
👍 |
The current nightly of rustc merged Type Ascription, which seems to collide with the format syntax of prettytable-rs.
The text was updated successfully, but these errors were encountered: