]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-mut-refs/feature-gate-const_mut_refs.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / consts / const-mut-refs / feature-gate-const_mut_refs.stderr
CommitLineData
1b1a35ee 1error[E0658]: mutable references are not allowed in constant functions
60c5eb7d
XL
2 --> $DIR/feature-gate-const_mut_refs.rs:5:14
3 |
4LL | const fn foo(x: &mut i32) -> i32 {
5 | ^
6 |
1b1a35ee
XL
7 = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
8 = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
60c5eb7d
XL
9
10error: aborting due to previous error
11
1b1a35ee 12For more information about this error, try `rustc --explain E0658`.