blob: 249ec0728c1a0f9c07d3514c3fa7f3b992f0a236 [file] [log] [blame]
//@ check-pass
//@ revisions: current next
//@[next] compile-flags: -Znext-solver
//@ ignore-compare-mode-next-solver (explicit revisions)
trait Trait {
fn foo() -> impl Sized + Send;
}
impl Trait for u32 {
fn foo() -> impl Sized {}
}
fn main() {}