summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/forgot-to-capture-const.rs
blob: 1b604e6c358baf74c4a17e94ee248cd5418fc770 (plain)
1
2
3
4
5
6
7
#![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() {}