about summary refs log tree commit diff
path: root/tests/ui/macros/macro-metavar-expr-concat
AgeCommit message (Collapse)AuthorLines
2025-09-01Add compiler error when trying to use concat metavar expr in repetitionsjullang-0/+29
Replace unimplemented()! with a more helpful compiler error.
2025-07-01Rollup merge of #143245 - tgross35:metavariable-expr-organization, ↵Matthias Krüger-847/+0
r=petrochenkov mbe: Add tests and restructure metavariable expressions Add tests that show better diagnostics, and factor `concat` handling to a separate function. Each commit message has further details. This performs the nonfunctional perparation for further changes such as https://github.com/rust-lang/rust/pull/142950 and https://github.com/rust-lang/rust/pull/142975 .
2025-06-24Move some `issues-*` tests to better homesTrevor Gross-0/+31
These tests were updated in the previous commit; while they are being cleaned up, move them to a non-issue directory.
2025-06-23mbe: Restructure `macro_metavar_expr` testsTrevor Gross-847/+0
These tests have expanded beyond the RFC, so rename the directory `rfc-3086-metavar-expr` to `metavar-expressions`. `concat` (which wasn't part of the RFC) now fits in this group, so merge its tests into the `metavar-expressions` directory. Additionally rename some related `issue-*` tests.
2024-12-01Fix #128346Caio-2/+42
2024-07-19Allow concat in repetitionsCaio-0/+18
2024-07-17Add support for literalsCaio-14/+265
2024-07-06Add support for literalsCaio-32/+191
2024-06-13Add a new concat metavar exprCaio-0/+379