]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-large-assignments.rs
Merge commit '8f1ebdd18bdecc621f16baaf779898cc08cc2766' into clippyup
[rust.git] / src / test / ui / feature-gates / feature-gate-large-assignments.rs
1 // check that `move_size_limit is feature-gated
2
3 #![move_size_limit = "42"] //~ ERROR the `#[move_size_limit]` attribute is an experimental feature
4
5 fn main() {}