about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-56806.rs
AgeCommit message (Collapse)AuthorLines
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