/src/test/run-pass/expr-if-struct.rs
http://github.com/jruderman/rust · Rust · 18 lines · 10 code · 6 blank · 2 comment · 6 complexity · 57438b7760bdaad3d37ded51684525af MD5 · raw file
- // -*- rust -*-
- // Tests for if as expressions returning structural types
- fn test_rec() {
- let rs = if true { {i: 100} } else { {i: 101} };
- assert (rs == {i: 100});
- }
- fn test_tag() {
- enum mood { happy, sad, }
- let rs = if true { happy } else { sad };
- assert (rs == happy);
- }
- fn main() { test_rec(); test_tag(); }