summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-box_syntax.rs
blob: df0c604b2a80949ecce20be042b9aa2161a85cd2 (plain)
1
2
3
4
5
6
// Test that the use of the box syntax is gated by `box_syntax` feature gate.

fn main() {
    let x = box 3;
    //~^ ERROR box expression syntax is experimental; you can call `Box::new` instead.
}