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

16 lines
312 B
Rust
Raw Normal View History

2023-03-06 07:42:04 +00:00
// gate-test-c_str_literals
2023-07-04 19:40:48 +02:00
// known-bug: #113333
// edition: 2021
2023-03-06 07:42:04 +00:00
macro_rules! m {
($t:tt) => {}
}
2023-03-06 07:10:23 +00:00
fn main() {
c"foo";
2023-07-04 19:40:48 +02:00
// FIXME(c_str_literals): This should be ``c".."` literals are experimental`
2023-03-06 07:10:23 +00:00
m!(c"test");
2023-07-04 19:40:48 +02:00
// FIXME(c_str_literals): This should be ``c".."` literals are experimental`
2023-03-06 07:10:23 +00:00
}