summaryrefslogtreecommitdiffstats
path: root/tests/ui/array-slice-vec/estr-slice.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/array-slice-vec/estr-slice.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/array-slice-vec/estr-slice.rs')
-rw-r--r--tests/ui/array-slice-vec/estr-slice.rs50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/ui/array-slice-vec/estr-slice.rs b/tests/ui/array-slice-vec/estr-slice.rs
new file mode 100644
index 000000000..cd2c17220
--- /dev/null
+++ b/tests/ui/array-slice-vec/estr-slice.rs
@@ -0,0 +1,50 @@
+// run-pass
+
+
+pub fn main() {
+ let x = "hello";
+ let v = "hello";
+ let y : &str = "there";
+
+ println!("{}", x);
+ println!("{}", y);
+
+ assert_eq!(x.as_bytes()[0], 'h' as u8);
+ assert_eq!(x.as_bytes()[4], 'o' as u8);
+
+ let z : &str = "thing";
+ assert_eq!(v, x);
+ assert_ne!(x, z);
+
+ let a = "aaaa";
+ let b = "bbbb";
+
+ let c = "cccc";
+ let cc = "ccccc";
+
+ println!("{}", a);
+
+ assert!(a < b);
+ assert!(a <= b);
+ assert_ne!(a, b);
+ assert!(b >= a);
+ assert!(b > a);
+
+ println!("{}", b);
+
+ assert!(a < c);
+ assert!(a <= c);
+ assert_ne!(a, c);
+ assert!(c >= a);
+ assert!(c > a);
+
+ println!("{}", c);
+
+ assert!(c < cc);
+ assert!(c <= cc);
+ assert_ne!(c, cc);
+ assert!(cc >= c);
+ assert!(cc > c);
+
+ println!("{}", cc);
+}