diff options
| author | Rafael Ávila de Espíndola <[email protected]> | 2011-01-13 23:19:42 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-14 11:10:06 -0800 |
| commit | bdcb9d9b531c8dc6962d854edfeeeeb9477b40b2 (patch) | |
| tree | 80bf58b48a95ec566154c8726713dd4b3c4f1e29 /src/Makefile | |
| parent | Change single-ident expr_ident to greedy/fat multi-ident expr_path, to handle... (diff) | |
| download | rust-bdcb9d9b531c8dc6962d854edfeeeeb9477b40b2.tar.xz rust-bdcb9d9b531c8dc6962d854edfeeeeb9477b40b2.zip | |
Make lookup non recursive and instead move the recursion just to
find_final_def. Use the fact that the recursion is in a simpler function to
detected import loops and exit.
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 eac87bfd..6bb40a98 100644 --- a/src/Makefile +++ b/src/Makefile @@ -405,6 +405,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \ test/compile-fail/import.rs \ test/compile-fail/import2.rs \ test/compile-fail/import3.rs \ + test/compile-fail/import4.rs \ test/compile-fail/bad-recv.rs \ test/compile-fail/bad-send.rs \ test/compile-fail/infinite-vec-type-recursion.rs \ @@ -485,6 +486,7 @@ TEST_XFAILS_RUSTC := $(filter-out \ import.rs \ import2.rs \ import3.rs \ + import4.rs \ while-type-error.rs \ ), \ $(wildcard test/*/*.rs test/*/*.rc)) |