about summary refs log tree commit diff
path: root/tests/ui/infinite
AgeCommit message (Collapse)AuthorLines
2023-12-11Add spacing information to delimiters.Nicholas Nethercote-8/+8
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-11-24Manual find replace updatesNilstrieb-1/+1
2023-11-24Show number in error message even for one errorNilstrieb-9/+9
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-10-20Avoid a `track_errors` by bubbling up most errors from `check_well_formed`Oli Scherer-1/+5
2023-08-30Permit recursive weak type aliasesOli Scherer-13/+70
2023-07-18moved note as unspanned note, moved note to the bottom of the msgnxya-15/+3
2023-07-18added links as a notenxya-3/+3
2023-07-18add links to query documentation for E0391nxya-3/+3
2023-07-18added links as a notenxya-3/+18
2023-07-18add links to query documentation for E0391nxya-3/+3
2023-04-11Split implied and super predicate queriesMichael Goulet-16/+1
2023-02-17Fix ICE on type alias in recursionclubby789-0/+25
2023-01-11Move /src/test to /testsAlbert Larsan-0/+1106