assert(*&[3, 4].back == 4); // access be ref assert([3, 4].back!0 == 4); // Slice-like API
See Implementation