mashup icon indicating copy to clipboard operation
mashup copied to clipboard

Concatenate identifiers in a macro invocation

Results 3 mashup issues
Sort by recently updated
recently updated
newest added

```rust #[macro_use] extern crate mashup; mashup! { sub1["y"] = Y y; } mashup! { sub2["z"] = Z z; } sub1! { struct "y"; } sub2! { struct "z"; } fn...

limitation

The following should fail to compile. ```rust mashup! { m["x"] = a "+" b; } ```

good first issue

This is a consequence of hygiene rules. ```rust #[macro_use] extern crate mashup; fn main() { let yy = 0; mashup! { m["y"] = y y; } m! { println!("{}", "y");...

limitation