rust/tests/run-pass/sums.rs

69 lines
1.3 KiB
Rust
Raw Normal View History

2016-03-12 21:32:24 -06:00
#![feature(custom_attribute)]
#![allow(dead_code, unused_attributes)]
2016-04-22 07:38:46 -05:00
#[derive(Debug, PartialEq)]
enum Unit { Unit(()) } // Force non-C-enum representation.
2016-03-13 07:05:48 -05:00
#[miri_run]
fn return_unit() -> Unit {
Unit::Unit(())
2016-03-13 07:05:48 -05:00
}
2016-04-22 07:38:46 -05:00
#[derive(Debug, PartialEq)]
enum MyBool { False(()), True(()) } // Force non-C-enum representation.
2016-03-13 07:05:48 -05:00
#[miri_run]
fn return_true() -> MyBool {
MyBool::True(())
2016-03-13 07:05:48 -05:00
}
#[miri_run]
fn return_false() -> MyBool {
MyBool::False(())
2016-03-13 07:05:48 -05:00
}
#[miri_run]
fn return_none() -> Option<i64> {
None
}
2016-03-12 21:32:24 -06:00
#[miri_run]
fn return_some() -> Option<i64> {
Some(42)
}
2016-03-13 07:30:28 -05:00
#[miri_run]
fn match_opt_none() -> i8 {
let x = None;
2016-03-13 07:30:28 -05:00
match x {
Some(data) => data,
None => 42,
2016-03-13 07:30:28 -05:00
}
}
#[miri_run]
fn match_opt_some() -> i8 {
let x = Some(13);
match x {
Some(data) => data,
2016-03-13 07:30:28 -05:00
None => 20,
}
}
#[miri_run]
fn two_nones() -> (Option<i16>, Option<i16>) {
(None, None)
}
2016-04-22 03:34:14 -05:00
2016-04-22 07:38:46 -05:00
#[miri_run]
fn main() {
//assert_eq!(two_nones(), (None, None));
assert_eq!(match_opt_some(), 13);
assert_eq!(match_opt_none(), 42);
//assert_eq!(return_some(), Some(42));
//assert_eq!(return_none(), None);
//assert_eq!(return_false(), MyBool::False);
//assert_eq!(return_true(), MyBool::True);
//assert_eq!(return_unit(), Unit::Unit);
}