diff options
Diffstat (limited to 'python/tidy/servo_tidy_tests/rust_tidy.rs')
-rw-r--r-- | python/tidy/servo_tidy_tests/rust_tidy.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/rust_tidy.rs b/python/tidy/servo_tidy_tests/rust_tidy.rs index 1bd0cfa3d27..abd533d5807 100644 --- a/python/tidy/servo_tidy_tests/rust_tidy.rs +++ b/python/tidy/servo_tidy_tests/rust_tidy.rs @@ -78,4 +78,8 @@ impl test { } else { let xif = 42 in { xif } // Should not trigger } + + let option = Some(3); + println!("{}", option.unwrap()); + panic!("What a way to end."); } |