Sign in
fuchsia
/
third_party
/
rust
/
febe98807f4bb505ccd7579a8b0252d0821b2dc8
/
.
/
tests
/
ui
/
impl-trait
/
issues
/
issue-103599.rs
blob: e674ce3cbdf8f3f1d1749cf49f4013ec956f3f8b [
file
] [
log
] [
blame
]
trait
T
{}
fn
wrap
(
x
:
impl
T
)
->
impl
T
{
//~^ ERROR cannot resolve opaque type
//~| WARN function cannot return without recursing
wrap
(
wrap
(
x
))
}
fn
main
()
{}