blob: 5c8f5f4db3b54293a12d0db2e1912c89f579536e [file] [log] [blame]
//@ check-pass
#![feature(const_trait_impl, effects)]
#[const_trait]
trait Foo {
fn foo(&self) {}
}
struct Bar<T>(T);
impl<T> Bar<T> {
const fn foo(&self) where T: ~const Foo {
self.0.foo()
}
}
fn main() {}