summary refs log tree commit diff
path: root/src/test/run-pass/generic-ivec.rs
blob: 26298de5b941edc42029e22570c9bd5c65ff91f3 (plain)
1
2
3
fn f<T>(v: @T) { }
fn main() { f(@[1, 2, 3, 4, 5]); }