Add a fat byte-slice coercion test.

This commit is contained in:
Scott Olson 2016-03-21 18:51:25 -06:00
parent e6c58d8277
commit 530315a220

View File

@ -15,3 +15,8 @@ fn hello() -> &'static str {
fn hello_bytes() -> &'static [u8; 13] {
b"Hello, world!"
}
#[miri_run]
fn hello_bytes_fat() -> &'static [u8] {
b"Hello, world!"
}