Files
rust/src/libcore
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-10-25 09:36:32 -07:00
2015-10-08 01:03:52 +03:00
2015-08-17 19:35:52 -07:00
2015-08-26 13:59:39 -04:00
2015-10-25 09:36:32 -07:00
2015-11-10 01:39:23 +01:00
2015-09-14 11:36:09 +02:00
2015-11-05 13:29:46 -05:00
2015-10-13 09:44:11 -04:00
2015-10-13 09:44:11 -04:00