]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2632-const-trait-impl/const_closures/gate.rs
attempt to make a minimal example work
[rust.git] / src / test / ui / rfc-2632-const-trait-impl / const_closures / gate.rs
1 // gate-test-const_closures
2 fn main() {
3     (const || {})();
4     //~^ ERROR: const closures are experimental
5 }