Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issue-100075-2.rs
blob: cf059af19251222073da1fde308739b074571543 [
file
] [
log
] [
blame
] [
edit
]
fn
opaque
<
T
>(
t
:
T
)
->
impl
Sized
{
//~^ ERROR cannot resolve opaque type
//~| WARNING function cannot return without recursing
opaque
(
Some
(
t
))
}
#[
allow
(
dead_code
)]
fn
main
()
{}