]> git.proxmox.com Git - rustc.git/blame - tests/ui/rfc-2632-const-trait-impl/gate.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / rfc-2632-const-trait-impl / gate.rs
CommitLineData
9c376795 1// gate-test-const_closures
353b0b11 2
9c376795
FG
3fn main() {
4 (const || {})();
5 //~^ ERROR: const closures are experimental
6}
353b0b11
FG
7
8macro_rules! e {
9 ($e:expr) => {}
10}
11
12e!((const || {}));
13//~^ ERROR const closures are experimental