rust/tests/ui/impl-trait/equality-in-canonical-query.rs

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

17 lines
323 B
Rust
Raw Permalink Normal View History

2023-10-18 01:19:04 -05:00
// issue: #116877
//@ revisions: sized clone
//@ check-pass
2023-10-18 01:19:04 -05:00
#[cfg(sized)] fn rpit() -> impl Sized {}
#[cfg(clone)] fn rpit() -> impl Clone {}
fn same_output<Out>(_: impl Fn() -> Out, _: impl Fn() -> Out) {}
pub fn foo() -> impl Sized {
same_output(rpit, foo);
same_output(foo, rpit);
rpit()
}
fn main () {}