about summary refs log tree commit diff
path: root/tests/ui/proc-macro/dollar-crate.stdout
AgeCommit message (Collapse)AuthorLines
2023-12-11Add spacing information to delimiters.Nicholas Nethercote-6/+12
This is an extension of the previous commit. It means the output of something like this: ``` stringify!(let a: Vec<u32> = vec![];) ``` goes from this: ``` let a: Vec<u32> = vec![] ; ``` With this PR, it now produces this string: ``` let a: Vec<u32> = vec![]; ```
2023-07-14Hide `compiler_builtins` in the preludeAmanieu d'Antras-48/+48
This crate is a private implementation detail. We only need to insert it into the crate graph for linking and should not expose any of its public API. Fixes #113533
2023-01-11Move /src/test to /testsAlbert Larsan-0/+240