DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / 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 }