diff options
| author | Rafael Ávila de Espíndola <[email protected]> | 2011-01-07 17:38:13 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-07 15:17:18 -0800 |
| commit | 2fb09eb58569f5a0e5544c6256173d4b6b8ffcf2 (patch) | |
| tree | ae9a24f0e04bf84f69cc61acbb15d1d7b72ceb86 /src/Makefile | |
| parent | Synthesize closure thunks, and pass closure pointer into fn calls. (diff) | |
| download | rust-2fb09eb58569f5a0e5544c6256173d4b6b8ffcf2.tar.xz rust-2fb09eb58569f5a0e5544c6256173d4b6b8ffcf2.zip | |
Add sufficient import support to compile some simple single-crate programs.
This is likely not the final solution. It does repetitive work and doesn't produce
errors for invalid but unused imports. In any case, I think it is a useful step.
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 e2091ca8..60f87e8e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -437,6 +437,8 @@ TEST_XFAILS_RUSTC := $(filter-out \ int.rs \ i32-sub.rs \ i8-incr.rs \ + import2.rs \ + import3.rs \ item-name-overload.rs \ large-records.rs \ lazy-init.rs \ |