summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-2288.rs
blob: c74e53fca60fdfac8b07edf7c483277f39c491ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// run-pass
#![allow(non_camel_case_types)]

#![feature(box_syntax)]

trait clam<A> {
  fn chowder(&self, y: A);
}

#[derive(Copy, Clone)]
struct foo<A> {
  x: A,
}

impl<A> clam<A> for foo<A> {
  fn chowder(&self, _y: A) {
  }
}

fn foo<A>(b: A) -> foo<A> {
    foo {
        x: b
    }
}

fn f<A>(x: Box<dyn clam<A>>, a: A) {
  x.chowder(a);
}

pub fn main() {

  let c = foo(42);
  let d: Box<dyn clam<isize>> = box c as Box<dyn clam<isize>>;
  f(d, c.x);
}