Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
impl-trait
/
precise-capturing
/
apit.rs
blob: efcac9ebb0b84532845385b414862b7b7afdd434 [
file
]
#![
feature
(
precise_capturing
)]
//~^ WARN the feature `precise_capturing` is incomplete
fn
hello
(
_
:
impl
use
<>
Sized
)
{}
//~^ ERROR `use<...>` precise capturing syntax not allowed on argument-position `impl Trait`
fn
main
()
{}