summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/forgot-to-capture-const.rs
blob: 26d29e456eaa2874ac967c188c6b56a51c30a11e (plain)
1
2
3
4
5
6
#![feature(precise_capturing)]

fn constant<const C: usize>() -> impl Sized + use<> {}
//~^ ERROR `impl Trait` must mention all const parameters in scope

fn main() {}