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