blob: d7ab7d62625d7631c9f9129fb47de3e843e05233 [file] [log] [blame]
fn main() {
concat!(b'f'); //~ ERROR: cannot concatenate a byte string literal
concat!(b"foo"); //~ ERROR: cannot concatenate a byte string literal
concat!(foo); //~ ERROR: expected a literal
concat!(foo()); //~ ERROR: expected a literal
}