about summary refs log tree commit diff
path: root/src/test/ui/break-while-condition.stderr
AgeCommit message (Collapse)AuthorLines
2021-11-18Move some tests to more reasonable directoriesCaio-37/+0
2019-12-14Revert "Remove `#![feature(never_type)]` from tests."Niko Matsakis-3/+3
This reverts commit 8f6197f39f7d468dfc5b2bd41dae4769992a2f83.
2019-11-21Auto merge of #66389 - estebank:type-err-labels, r=petrochenkovbors-9/+9
Specific labels when referring to "expected" and "found" types
2019-11-21Remove `#![feature(never_type)]` from tests.Mazdak Farrokhzad-3/+3
Also remove `never_type` the feature-gate test.
2019-11-18Surround types with backticks in type errorsEsteban Küber-3/+3
2019-11-18review comments: tweak prefix stringsEsteban Küber-6/+6
2019-03-11Update testsVadim Petrochenkov-3/+3
2018-12-25Remove licensesMark Rousskov-3/+3
2018-06-29Fix incorrect type mismatch label pointing at return typeEsteban Küber-6/+0
2018-05-25--bless the testsvarkor-2/+2
2018-05-25Add a test for returning inside a while loopvarkor-7/+35
2018-05-25Fix behaviour of divergence in while loop conditionsvarkor-0/+15
This fixes `'a: while break 'a {};` being treated as diverging, by tracking break expressions in the same way as in `loop` expressions.