We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, this doesn't work.
macro_rules! Q(($T:ty, $f:expr, $name:ident) => { struct $name { value: $T } impl $name { pure fn add(&self, other: &$name) -> $name { $name { value: self.value + other.value } } } }) Q!(i8, 8, Q8) fn main() { let a = Q8 { value: 4 }; let b = Q8 { value: 8 }; io::println(fmt!("Q8: %?", &a.add(&b))) }
and gives the error,
error: type `Q8` does not implement any method in scope named `add` io::println(fmt!("Q8: %?", &a.add(&b)))
the intended effect is something like,
Q8: {value: 12}
should be printed to stdout.
The text was updated successfully, but these errors were encountered:
Seems non-critical for 0.7. Nominating for milestone 1 (well-defined).
Sorry, something went wrong.
dupe of #4375
No branches or pull requests
For example, this doesn't work.
and gives the error,
the intended effect is something like,
should be printed to stdout.
The text was updated successfully, but these errors were encountered: