diff options
-rw-r--r-- | 030address.cc | 4 | ||||
-rw-r--r-- | 031container.cc | 7 |
2 files changed, 0 insertions, 11 deletions
diff --git a/030address.cc b/030address.cc index b742731f..dde4d79a 100644 --- a/030address.cc +++ b/030address.cc @@ -94,10 +94,6 @@ bool canonize_type(reagent& r) { } void drop_from_type(reagent& r, string expected_type) { - if (!r.type) { - raise << "can't drop " << expected_type << " from " << to_string(r) << '\n' << end(); - return; - } if (r.type->name != expected_type) { raise << "can't drop2 " << expected_type << " from " << to_string(r) << '\n' << end(); return; diff --git a/031container.cc b/031container.cc index 63ef85f2..fa008404 100644 --- a/031container.cc +++ b/031container.cc @@ -399,13 +399,6 @@ def main [ ] +mem: storing 2 in location 4 -:(scenario canonize_non_pointer_fails_without_crashing) -% Hide_errors = true; -def foo [ - 1:address:number <- get-address *p, x:offset -] -# don't crash - //:: Allow containers to be defined in mu code. :(scenarios load) |