rust/src/test
bors f04eb37c7e auto merge of #6347 : cmr/rust/unknown_module_resolve_error, r=catamorphism
This improves error reporting for the following class of imports:

```rust
use foo::bar;
```

Where foo, the topmost module, is unresolved. It now results in:

```text
/tmp/foo.rs:1:4: 1:7 error: unresolved import.  perhapsyou forgot an 'extern mod foo'?
/tmp/foo.rs:1 use foo::bar;
                  ^~~
/tmp/foo.rs:1:4: 1:12 error: failed to resolve import: foo::bar
/tmp/foo.rs:1 use foo::bar;
                  ^~~~~~~~
error: failed to resolve imports
error: aborting due to 3 previous errors
```

This is the first of a series of changes I plan on making to unresolved name error messages.
2013-05-10 00:52:52 -07:00
..
auxiliary test: Fix tests. 2013-05-08 17:04:02 -07:00
bench test: Fix modes in the benchmarks. 2013-05-08 17:04:03 -07:00
compile-fail auto merge of #6347 : cmr/rust/unknown_module_resolve_error, r=catamorphism 2013-05-10 00:52:52 -07:00
debug-info auto merge of #5824 : bleibig/rust/debuginfo, r=brson 2013-04-19 12:03:49 -07:00
pretty add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
run-fail auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiyn 2013-05-09 03:51:32 -07:00
run-pass auto merge of #6336 : nikomatsakis/rust/issue-6308-closure-bounds, r=nikomatsakis 2013-05-09 17:50:21 -07:00
run-pass-fulldeps add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00