]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-object-generics.rs
Convert unknown_features lint into an error
[rust.git] / src / test / run-pass / trait-object-generics.rs
1 // Copyright 2013 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
11 // test for #8664
12
13 #![feature(box_syntax)]
14
15 use std::marker;
16
17 pub trait Trait2<A> {
18     fn doit(&self) -> A;
19 }
20
21 pub struct Impl<A1, A2, A3> {
22     m1: marker::PhantomData<(A1,A2,A3)>,
23     /*
24      * With A2 we get the ICE:
25      * task <unnamed> failed at 'index out of bounds: the len is 1 but the index is 1',
26      * src/librustc/middle/subst.rs:58
27      */
28     t: Box<Trait2<A2>+'static>
29 }
30
31 impl<A1, A2, A3> Impl<A1, A2, A3> {
32     pub fn step(&self) {
33         self.t.doit();
34     }
35 }
36
37 // test for #8601
38
39 enum Type<T> { Constant(T) }
40
41 trait Trait<K,V> {
42     fn method(&self, _: Type<(K,V)>) -> isize;
43 }
44
45 impl<V> Trait<u8,V> for () {
46     fn method(&self, _x: Type<(u8,V)>) -> isize { 0 }
47 }
48
49 pub fn main() {
50     let a = box () as Box<Trait<u8, u8>>;
51     assert_eq!(a.method(Type::Constant((1, 2))), 0);
52 }