Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
111 B
Rust
Raw Normal View History

2022-12-21 16:32:16 +00:00
// gate-test-const_closures
2022-12-21 14:51:02 +00:00
fn main() {
(const || {})();
//~^ ERROR: const closures are experimental
}