Uncomment line in test

This commit is contained in:
Greg Shuflin 2021-10-26 13:02:58 -07:00
parent b9767d0d7d
commit c8af776b15
1 changed files with 1 additions and 1 deletions

View File

@ -208,5 +208,5 @@ fn import_all() {
type Option<T> = Some(T) | None
import Option::*
let x = Some(9); if x is Some(q) then { q } else { 0 }"#;
//eval_assert(source, "9");
eval_assert(source, "9");
}