aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/expr-if.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/expr-if.rs')
-rw-r--r--src/test/run-pass/expr-if.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/run-pass/expr-if.rs b/src/test/run-pass/expr-if.rs
index e69a629f..7c99f2ea 100644
--- a/src/test/run-pass/expr-if.rs
+++ b/src/test/run-pass/expr-if.rs
@@ -80,11 +80,6 @@ fn test_if_as_block_result() {
check (res);
}
-fn test_str() {
- auto res = if (true) { "happy" } else { "sad" };
- check (res == "happy");
-}
-
fn main() {
test_if();
test_else();
@@ -94,5 +89,4 @@ fn main() {
test_inferrence();
test_if_as_if_condition();
test_if_as_block_result();
- test_str();
}