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

14 lines
211 B
Rust
Raw Normal View History

2023-03-06 07:42:04 +00:00
// gate-test-c_str_literals
macro_rules! m {
($t:tt) => {}
}
2023-03-06 07:10:23 +00:00
fn main() {
c"foo";
//~^ ERROR: `c".."` literals are experimental
m!(c"test");
//~^ ERROR: `c".."` literals are experimental
}