]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-large-assignments.rs
Rollup merge of #94271 - RalfJung:downcast, r=oli-obk
[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() {}