about summary refs log tree commit diff
path: root/src/test/compile-fail/sized-cycle-note.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-26/+0
2016-05-03add comments and testsAriel Ben-Yehuda-6/+1
2016-04-04process cycles as soon as they are detectedNiko Matsakis-5/+5
We used to wait for the recursion limit, but that might well be too long!
2016-03-30Fix fallout in testsJeffrey Seyfried-3/+3
2016-01-16Detect cycles and specialize error reporting for Sized. It is importantNiko Matsakis-0/+31
to get the `Sized` error usable, since that hits new users frequently. Further work is needed for the error reporting for non-Sized cycle cases; those currently just fallback to the old path. Also adjust tests.