Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
use std::default::Default;
#[derive(Default)]
struct A {
foo: Box<[bool]>,
}
pub fn main() {
let a: A = Default::default();
let b: Box<[_]> = Box::<[bool; 0]>::new([]);
assert_eq!(a.foo, b);