DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / 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 }