Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
precise-capturing
/
duplicated-use.rs
blob: b5632dc157766ebd68fc858af903c33f23729f26 [
file
] [
log
] [
blame
] [
edit
]
//@ revisions: real pre_expansion
//@[pre_expansion] check-pass
#[
cfg
(
real
)]
fn
hello
<
'a>() -> impl Sized + use<'
a
>
+
use
<
'
a
>
{}
//[real]~^ ERROR duplicate `use<...>` precise capturing syntax
fn
main
()
{}