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