1error: expected identifier, found `0f` 2 --> tests/ui/invalid-ident.rs:3:1 3 | 43 | / paste! { 54 | | fn [<0 f>]() {} 65 | | } 7 | |_^ expected identifier 8 | 9help: identifiers cannot start with a number 10 --> tests/ui/invalid-ident.rs:3:1 11 | 123 | paste! { 13 | ^ 14 = note: this error originates in the macro `paste` (in Nightly builds, run with -Z macro-backtrace for more info) 15 16error: `"f\""` is not a valid identifier 17 --> tests/ui/invalid-ident.rs:8:8 18 | 198 | fn [<f '"'>]() {} 20 | ^^^^^^^^^ 21 22error: `"f'"` is not a valid identifier 23 --> tests/ui/invalid-ident.rs:12:8 24 | 2512 | fn [<f "'">]() {} 26 | ^^^^^^^^^ 27