|
| 1 | +#![feature(unsafe_attributes)] |
| 2 | +// https://github.com/rust-lang/rust/issues/123757 |
| 3 | +// |
| 4 | +#![simple_ident] |
| 5 | +#![simple::path] |
| 6 | +#![simple_ident_expr = ""] |
| 7 | +#![simple::path::Expr = ""] |
| 8 | +#![simple_ident_tt(a b c)] |
| 9 | +#![simple_ident_tt[a b c]] |
| 10 | +#![simple_ident_tt{a b c}] |
| 11 | +#![simple::path::tt(a b c)] |
| 12 | +#![simple::path::tt[a b c]] |
| 13 | +#![simple::path::tt{a b c}] |
| 14 | +#![unsafe(simple_ident)] |
| 15 | +#![unsafe(simple::path)] |
| 16 | +#![unsafe(simple_ident_expr = "")] |
| 17 | +#![unsafe(simple::path::Expr = "")] |
| 18 | +#![unsafe(simple_ident_tt(a b c))] |
| 19 | +#![unsafe(simple_ident_tt[a b c])] |
| 20 | +#![unsafe(simple_ident_tt{a b c})] |
| 21 | +#![unsafe(simple::path::tt(a b c))] |
| 22 | +#![unsafe(simple::path::tt[a b c])] |
| 23 | +#![unsafe(simple::path::tt{a b c})] |
| 24 | +// I don't think `safe` attributes are a thing, but adding these formatting cases here just in case |
| 25 | +#![safe(simple_ident)] |
| 26 | +#![safe(simple::path)] |
| 27 | +#![safe(simple_ident_expr = "")] |
| 28 | +#![safe(simple::path::Expr = "")] |
| 29 | +#![safe(simple_ident_tt(a b c))] |
| 30 | +#![safe(simple_ident_tt[a b c])] |
| 31 | +#![safe(simple_ident_tt{a b c})] |
| 32 | +#![safe(simple::path::tt(a b c))] |
| 33 | +#![safe(simple::path::tt[a b c])] |
| 34 | +#![safe(simple::path::tt{a b c})] |
0 commit comments