bors 0bd708461b Auto merge of #29770 - ollie27:assert_eq_unsized, r=alexcrichton
`format_args!` doesn't support none Sized types so we should just pass it the references to `left_val` and `right_val`.

The following works:
```rust
assert!([1, 2, 3][..] == vec![1, 2, 3][..])
```
So I would expect this to as well:
```rust
assert_eq!([1, 2, 3][..], vec![1, 2, 3][..])
```
But it fails with "error: the trait `core::marker::Sized` is not implemented for the type `[_]` [E0277]"
I don't know if this change will have any nasty side effects I don't understand.
2015-11-12 10:38:48 +00:00
..
2015-11-07 00:26:44 +08:00
2015-11-11 17:01:52 -05:00
2015-11-09 22:55:50 -08:00
2015-11-04 09:33:09 -05:00
2015-11-10 12:51:56 +03:00
2015-11-12 02:08:37 +05:30
2015-11-09 22:55:50 -08:00
2015-11-12 13:20:48 +05:30
2015-11-12 09:23:37 +13:00
2015-11-09 22:55:50 -08:00
2015-11-09 22:55:50 -08:00