diff options
| author | Graydon Hoare <[email protected]> | 2011-01-19 16:29:14 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-19 16:29:14 -0800 |
| commit | 9d3ebd6a57b51f02788331f56681e8f593d82e60 (patch) | |
| tree | f3c6ea5aeafedbd73c966b80d6901474b77e6302 /src/Makefile | |
| parent | Look at the type params of an item_ty when resolving. (diff) | |
| download | rust-9d3ebd6a57b51f02788331f56681e8f593d82e60.tar.xz rust-9d3ebd6a57b51f02788331f56681e8f593d82e60.zip | |
Implement dynamic GEP enough to permit expr_field to work on tup(T,T,T).
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 628b00cb..0e039d65 100644 --- a/src/Makefile +++ b/src/Makefile @@ -392,6 +392,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ test/run-pass/vec-slice.rs \ test/run-pass/fn-lval.rs \ test/run-pass/generic-recursive-tag.rs \ + test/run-pass/generic-tup.rs \ test/run-pass/iter-ret.rs \ test/run-pass/lib-io.rs \ test/run-pass/mlist-cycle.rs \ @@ -440,6 +441,7 @@ TEST_XFAILS_RUSTC := $(filter-out \ fact.rs \ generic-fn-infer.rs \ generic-drop-glue.rs \ + generic-tup.rs \ hello.rs \ int.rs \ i32-sub.rs \ |