2018-02-07 21:35:35 -06:00
|
|
|
// compile-flags: -Z teach
|
2016-05-17 08:01:31 -05:00
|
|
|
trait SomeTrait {
|
2022-12-27 19:57:39 -06:00
|
|
|
fn foo(&self);
|
|
|
|
}
|
|
|
|
struct S;
|
|
|
|
impl SomeTrait for S {
|
|
|
|
fn foo(&self) {}
|
2016-05-17 08:01:31 -05:00
|
|
|
}
|
|
|
|
fn main() {
|
2022-12-27 19:57:39 -06:00
|
|
|
let trait_obj: &dyn SomeTrait = &S;
|
2016-08-08 15:37:44 -05:00
|
|
|
|
|
|
|
let &invalid = trait_obj;
|
|
|
|
//~^ ERROR E0033
|
2016-05-17 08:01:31 -05:00
|
|
|
}
|