2015-04-08 04:31:51 -04:00
|
|
|
// Variation on `borrowck-use-uninitialized-in-cast` in which we do a
|
|
|
|
|
// trait cast from an uninitialized source. Issue #20791.
|
2024-04-10 20:01:20 +00:00
|
|
|
//@ run-rustfix
|
|
|
|
|
#![allow(unused_variables, dead_code)]
|
2015-04-08 04:31:51 -04:00
|
|
|
|
|
|
|
|
trait Foo { fn dummy(&self) { } }
|
|
|
|
|
impl Foo for i32 { }
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let x: &i32;
|
2019-05-28 14:46:13 -04:00
|
|
|
let y = x as *const dyn Foo; //~ ERROR [E0381]
|
2015-04-08 04:31:51 -04:00
|
|
|
}
|