Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issue-46959.rs
blob: 0acb293384cbeeeb728440fd11156f17cccae5dc [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
non_camel_case_types
)]
#[
allow
(
dead_code
)]
fn
qqq
(
lol
:
impl
Iterator
<
Item
=
u32
>)
->
impl
Iterator
<
Item
=
u64
>
{
lol
.
map
(|
x
|
x
as
u64
)
}
fn
main
()
{}