about summary refs log tree commit diff
path: root/src/test/ui/break-while-condition.stderr
AgeCommit message (Collapse)AuthorLines
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.