]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-box_patterns.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / feature-gates / feature-gate-box_patterns.rs
1 fn main() {
2     let box x = Box::new('c'); //~ ERROR box pattern syntax is experimental
3     println!("x: {}", x);
4 }