1 2 3 4 5 6 7 8 9 10
// xfail-test fn foo(x: &[int]) -> int { x[0] } fn main() { let p = [1,2,3,4,5]/_; assert foo(p) == 1; }