rust/src/test
Esteban Küber 552ff07758 Point at path segment on module not found
Point at the correct path segment on a import statement where a module
doesn't exist.

New output:

```rust
error[E0432]: unresolved import `std::bar`
 --> <anon>:1:10
  |
1 | use std::bar::{foo1, foo2};
  |          ^^^ Could not find `bar` in `std`
```

instead of:

```rust
error[E0432]: unresolved import `std::bar::foo1`
 --> <anon>:1:16
  |
1 | use std::bar::{foo1, foo2};
  |                ^^^^ Could not find `bar` in `std`

error[E0432]: unresolved import `std::bar::foo2`
 --> <anon>:1:22
  |
1 | use std::bar::{foo1, foo2};
  |                      ^^^^ Could not find `bar` in `std`
```
2017-07-25 21:25:43 -07:00
..
codegen powerpc: Ignore the stack-probes test 2017-07-18 08:50:58 +00:00
codegen-units Adapt cgu-partitioning tests to pre-trans symbol internalization. 2017-07-13 13:29:25 +02:00
compile-fail Point at path segment on module not found 2017-07-25 21:25:43 -07:00
compile-fail-fulldeps Auto merge of #43270 - petrochenkov:fixstab, r=alexcrichton 2017-07-20 09:01:58 +00:00
debuginfo Pretty-printers tests: gdbr -> gdb 2017-06-09 18:51:28 +03:00
incremental Detect implicitly defined late bound lifetime parameters as well 2017-07-18 00:12:48 +03:00
mir-opt Update basic_assignment test to reflect small changes to codegen. 2017-06-12 13:06:42 +02:00
parse-fail Store all generic arguments for method calls in AST 2017-07-10 00:20:25 +03:00
pretty Update pretty test for derive attributes 2017-02-05 12:22:29 +10:30
run-fail updated assert_eq test, fixed incorrect assert_ne message and added test. 2017-06-13 14:17:59 +01:00
run-fail-fulldeps Implement a file-path remapping feature in support of debuginfo and reproducible builds. 2017-04-26 15:44:02 +02:00
run-make Auto merge of #42711 - Firstyear:san-on-dylib, r=alexcrichton 2017-07-17 17:02:18 +00:00
run-pass Auto merge of #42859 - eddyb:const-size-and-align-of, r=nikomatsakis 2017-07-19 16:58:02 +00:00
run-pass-fulldeps Update and fix a few tests 2017-06-26 02:08:14 +00:00
run-pass-valgrind Move unsized_tuple_coercion behind a feature gate. 2017-06-29 21:25:35 +09:00
rustdoc remove associated_consts feature gate 2017-07-06 11:52:25 -07:00
ui Point at path segment on module not found 2017-07-25 21:25:43 -07:00
ui-fulldeps Change some helps to suggestions 2017-07-17 10:03:37 +02:00
COMPILER_TESTS.md Merge ui/README.md into COMPILER_TESTS.md and describe how custom UI normalization works. 2017-07-11 16:57:53 +08:00