]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0070.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0070.rs
CommitLineData
3157f602
XL
1const SOME_CONST : i32 = 12;
2
3fn some_other_func() {}
4
5fn some_function() {
6 SOME_CONST = 14; //~ ERROR E0070
7 1 = 3; //~ ERROR E0070
8 some_other_func() = 4; //~ ERROR E0070
a7813a04
XL
9}
10
11fn main() {
54a0048b 12}