2014-12-13 20:42:41 -06:00
|
|
|
// 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Test that we can use `Self` types in impls in the expected way.
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
|
2015-01-06 19:54:54 -06:00
|
|
|
// Test uses on inherent impl.
|
2014-12-13 20:42:41 -06:00
|
|
|
impl Foo {
|
|
|
|
fn foo(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
|
|
|
|
Foo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test uses when implementing a trait and with a type parameter.
|
|
|
|
pub struct Baz<X> {
|
|
|
|
pub f: X,
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Bar<X> {
|
|
|
|
fn bar(x: Self, y: &Self, z: Box<Self>) -> Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Bar<int> for Box<Baz<int>> {
|
|
|
|
fn bar(_x: Self, _y: &Self, _z: Box<Self>) -> Self {
|
|
|
|
box Baz { f: 42 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _: Foo = Foo::foo(Foo, &Foo, box Foo);
|
|
|
|
let _: Box<Baz<int>> = Bar::bar(box Baz { f: 42 },
|
|
|
|
&box Baz { f: 42 },
|
|
|
|
box box Baz { f: 42 });
|
|
|
|
}
|