blob: 7bbd3d68a900eb2ff4d0783a2aa647270b72c0ee [file] [log] [blame] [edit]
fn main() {
concat!(-42);
concat!(-3.14);
concat!(-"hello");
//~^ ERROR expected a literal
concat!(--1);
//~^ ERROR expected a literal
}