1
Fork 0
rust/src/test/ui/issues/issue-19380.rs

19 lines
230 B
Rust
Raw Normal View History

trait Qiz {
fn qiz();
}
struct Foo;
impl Qiz for Foo {
fn qiz() {}
}
struct Bar {
foos: &'static [&'static (Qiz + 'static)]
//~^ ERROR E0038
}
const FOO : Foo = Foo;
const BAR : Bar = Bar { foos: &[&FOO]};
fn main() { }