2014-12-15 20:11:09 -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.
|
|
|
|
|
2015-02-23 14:27:55 -06:00
|
|
|
// Check that a trait with by-value self is considered object-safe.
|
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![allow(dead_code)]
|
2015-03-23 17:23:34 -05:00
|
|
|
#![allow(trivial_casts)]
|
2014-12-15 20:11:09 -06:00
|
|
|
|
|
|
|
trait Bar {
|
|
|
|
fn bar(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
trait Baz {
|
|
|
|
fn baz(self: Self);
|
|
|
|
}
|
|
|
|
|
2015-02-09 07:54:34 -06:00
|
|
|
trait Quux {
|
|
|
|
// Legal because of the where clause:
|
|
|
|
fn baz(self: Self) where Self : Sized;
|
|
|
|
}
|
|
|
|
|
2014-12-15 20:11:09 -06:00
|
|
|
fn make_bar<T:Bar>(t: &T) -> &Bar {
|
2015-02-23 14:27:55 -06:00
|
|
|
t // legal
|
2014-12-15 20:11:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make_bar_explicit<T:Bar>(t: &T) -> &Bar {
|
2015-02-23 14:27:55 -06:00
|
|
|
t as &Bar // legal
|
2014-12-15 20:11:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make_baz<T:Baz>(t: &T) -> &Baz {
|
2015-02-23 14:27:55 -06:00
|
|
|
t // legal
|
2014-12-15 20:11:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn make_baz_explicit<T:Baz>(t: &T) -> &Baz {
|
2015-02-23 14:27:55 -06:00
|
|
|
t as &Baz // legal
|
2014-12-15 20:11:09 -06:00
|
|
|
}
|
|
|
|
|
2015-02-09 07:54:34 -06:00
|
|
|
fn make_quux<T:Quux>(t: &T) -> &Quux {
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_quux_explicit<T:Quux>(t: &T) -> &Quux {
|
|
|
|
t as &Quux
|
|
|
|
}
|
|
|
|
|
2015-02-23 14:27:55 -06:00
|
|
|
#[rustc_error]
|
|
|
|
fn main() { //~ ERROR compilation successful
|
2014-12-15 20:11:09 -06:00
|
|
|
}
|