// Copyright 2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // must-compile-successfully use std::rc::Rc; type SVec = Vec; type VVec<'b, 'a: 'b> = Vec<&'a i32>; type WVec<'b, T: 'b> = Vec; fn foo<'a>(y: &'a i32) { // If the bounds above would matter, the code below would be rejected. let mut x : SVec<_> = Vec::new(); x.push(Rc::new(42)); let mut x : VVec<'static, 'a> = Vec::new(); x.push(y); let mut x : WVec<'static, & 'a i32> = Vec::new(); x.push(y); } fn main() { foo(&42); }