summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/try-macro.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/macros/try-macro.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/macros/try-macro.rs')
-rw-r--r--tests/ui/macros/try-macro.rs49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/ui/macros/try-macro.rs b/tests/ui/macros/try-macro.rs
new file mode 100644
index 000000000..824c77d9d
--- /dev/null
+++ b/tests/ui/macros/try-macro.rs
@@ -0,0 +1,49 @@
+// run-pass
+#![allow(deprecated)] // for deprecated `try!()` macro
+use std::num::{ParseFloatError, ParseIntError};
+
+fn main() {
+ assert_eq!(simple(), Ok(1));
+ assert_eq!(nested(), Ok(2));
+ assert_eq!(merge_ok(), Ok(3.0));
+ assert_eq!(merge_int_err(), Err(Error::Int));
+ assert_eq!(merge_float_err(), Err(Error::Float));
+}
+
+fn simple() -> Result<i32, ParseIntError> {
+ Ok(try!("1".parse()))
+}
+
+fn nested() -> Result<i32, ParseIntError> {
+ Ok(try!(try!("2".parse::<i32>()).to_string().parse::<i32>()))
+}
+
+fn merge_ok() -> Result<f32, Error> {
+ Ok(try!("1".parse::<i32>()) as f32 + try!("2.0".parse::<f32>()))
+}
+
+fn merge_int_err() -> Result<f32, Error> {
+ Ok(try!("a".parse::<i32>()) as f32 + try!("2.0".parse::<f32>()))
+}
+
+fn merge_float_err() -> Result<f32, Error> {
+ Ok(try!("1".parse::<i32>()) as f32 + try!("b".parse::<f32>()))
+}
+
+#[derive(Debug, PartialEq)]
+enum Error {
+ Int,
+ Float,
+}
+
+impl From<ParseIntError> for Error {
+ fn from(_: ParseIntError) -> Error {
+ Error::Int
+ }
+}
+
+impl From<ParseFloatError> for Error {
+ fn from(_: ParseFloatError) -> Error {
+ Error::Float
+ }
+}