mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
8 lines
222 B
Rust
8 lines
222 B
Rust
![]() |
#![feature(precise_capturing)]
|
||
|
//~^ WARN the feature `precise_capturing` is incomplete
|
||
|
|
||
|
fn constant<const C: usize>() -> impl use<> Sized {}
|
||
|
//~^ ERROR `impl Trait` must mention all const parameters in scope
|
||
|
|
||
|
fn main() {}
|