/src/test/auxiliary/issue-2380.rs

https://gitlab.com/pranith/rust · Rust · 26 lines · 12 code · 5 blank · 9 comment · 1 complexity · 73f8e880b0ffd1f7d4112b644e9a61e8 MD5 · raw file

  1. // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. #![crate_name="a"]
  11. #![crate_type = "lib"]
  12. #![allow(unknown_features)]
  13. #![feature(box_syntax)]
  14. pub trait i<T>
  15. {
  16. fn dummy(&self, t: T) -> T { panic!() }
  17. }
  18. pub fn f<T>() -> Box<i<T>+'static> {
  19. impl<T> i<T> for () { }
  20. box() () as Box<i<T>+'static>
  21. }