rust/tests/ui/issues/issue-50403.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
127 B
Rust
Raw Normal View History

#![feature(concat_idents)]
fn main() {
let x = concat_idents!(); //~ ERROR `concat_idents!()` takes 1 or more arguments
}