about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-56806.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-6/+0
2019-09-02Refer to "`self` type" instead of "receiver type"Esteban Küber-3/+2
2019-01-04use `delay_span_bug` instead of `bug!` when doing layout sanity checkMichael Hewson-0/+7
It's possible that `is_object_safe` is called on a trait that is ill-formed, and we shouldn't ICE unless there are no errors being raised. Using `delay_span_bug` solves this. fixes #56806