rust/tests/ui/rfcs/rfc-2632-const-trait-impl/tilde_const_on_impl_bound.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
250 B
Rust
Raw Normal View History

2023-07-29 03:20:25 -05:00
// known-bug: #110395
// FIXME check-pass
#![feature(const_trait_impl, effects)]
#[const_trait]
trait Foo {
fn foo(&self) {}
}
struct Bar<T>(T);
impl<T: ~const Foo> Bar<T> {
const fn foo(&self) {
self.0.foo()
}
}
fn main() {}