DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / macros / issue-106837.rs
12345678910
fn main() { concat!(-42); concat!(-3.14); concat!(-"hello"); //~^ ERROR expected a literal concat!(--1); //~^ ERROR expected a literal }