diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:03 +0000 |
commit | 64d98f8ee037282c35007b64c2649055c56af1db (patch) | |
tree | 5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/assign-assign.rs | |
parent | Adding debian version 1.67.1+dfsg1-1. (diff) | |
download | rustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip |
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/assign-assign.rs')
-rw-r--r-- | tests/ui/assign-assign.rs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/assign-assign.rs b/tests/ui/assign-assign.rs new file mode 100644 index 000000000..bcf506b39 --- /dev/null +++ b/tests/ui/assign-assign.rs @@ -0,0 +1,30 @@ +// run-pass +// Issue 483 - Assignment expressions result in nil + +fn test_assign() { + let mut x: isize; + let y: () = x = 10; + assert_eq!(x, 10); + assert_eq!(y, ()); + let mut z = x = 11; + assert_eq!(x, 11); + assert_eq!(z, ()); + z = x = 12; + assert_eq!(x, 12); + assert_eq!(z, ()); +} + +fn test_assign_op() { + let mut x: isize = 0; + let y: () = x += 10; + assert_eq!(x, 10); + assert_eq!(y, ()); + let mut z = x += 11; + assert_eq!(x, 21); + assert_eq!(z, ()); + z = x += 12; + assert_eq!(x, 33); + assert_eq!(z, ()); +} + +pub fn main() { test_assign(); test_assign_op(); } |