diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-11-09 15:19:51 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-11-09 15:19:51 -0800 |
commit | c1720b71386b51a7e1da814f8257799d30e6013d (patch) | |
tree | 7ee81475a253d7687a4c8003259cca9f4687043c | |
parent | 7637d1ac845d40015820a216cc8697178905e4ad (diff) | |
download | mu-c1720b71386b51a7e1da814f8257799d30e6013d.tar.gz |
2412 - backfill test for 2391
Tiny patch for such a large change, but we do what we can.
-rw-r--r-- | 059generic_recipe.cc | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/059generic_recipe.cc b/059generic_recipe.cc index 6f6ca5c8..63439af6 100644 --- a/059generic_recipe.cc +++ b/059generic_recipe.cc @@ -328,7 +328,6 @@ recipe foo a:_t -> result:_t [ +mem: storing 15 in location 12 :(scenario generic_recipe_nonroot) -% Hide_warnings = Hide_errors = true; recipe main [ 10:foo:point <- merge 14, 15, 16 20:point/raw <- bar 10:foo:point @@ -345,3 +344,21 @@ container foo:_t [ ] +mem: storing 14 in location 20 +mem: storing 15 in location 21 + +:(scenario generic_recipe_type_deduction_ignores_offsets) +recipe main [ + 10:foo:point <- merge 14, 15, 16 + 20:point/raw <- bar 10:foo:point +] +recipe bar a:foo:_t -> result:_t [ + local-scope + load-ingredients + x:number <- copy 1 + result <- get a, x:offset # shouldn't collide with other variable +] +container foo:_t [ + x:_t + y:number +] ++mem: storing 14 in location 20 ++mem: storing 15 in location 21 |