about summary refs log tree commit diff
path: root/src/test/compile-fail/writing-through-uninit-vec.rs
blob: 283e925e20782df161dce19861786b1bcae2c6e3 (plain)
1
2
3
4
5
// error-pattern:unsatisfied precondition constraint

fn test() { let w: [int]; w[5] = 0; }

fn main() { test(); }