rust/src/test
bors b4d3ed64ec Auto merge of #39291 - Freyskeyd:check_context_E0423, r=petrochenkov
Checker:: Execute levenshtein before other context checking

As explain [here]() i think it's better to check for a miss typing before checking context dependent help.

```rust
struct Handle {}

struct Something {
     handle: Handle
}

fn main() {
     let handle: Handle = Handle {};

     let s: Something = Something {
         // Checker detect an error and propose a solution with `Handle { /* ... */ }`
         // but it's a miss typing of `handle`
         handle: Handle
    };
}
```

Ping: @nagisa for #39226

Signed-off-by: Freyskeyd <simon.paitrault@gmail.com>
2017-04-29 15:18:52 +00:00
..
codegen Disable path remapping test on Windows. 2017-04-28 13:30:07 +02:00
codegen-units translate drop glue using MIR 2017-03-18 02:53:08 +02:00
compile-fail Auto merge of #41564 - gaurikholkar:master, r=nikomatsakis 2017-04-29 06:16:22 +00:00
compile-fail-fulldeps Implement a file-path remapping feature in support of debuginfo and reproducible builds. 2017-04-26 15:44:02 +02:00
debuginfo update gdbr tests 2017-03-09 22:12:36 +01:00
incremental rustc: use monomorphic const_eval for cross-crate enum discriminants. 2017-04-16 01:31:37 +03:00
mir-opt borrowck::mir::dataflow: ignore unwind edges of empty drops 2017-04-08 22:46:50 +03:00
parse-fail Fix issue with single question mark or paren 2017-04-21 21:32:44 +03:00
pretty Update pretty test for derive attributes 2017-02-05 12:22:29 +10:30
run-fail
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 Do not check if libclang_rt.?san_*_dynamic.dylib is an unstable crate. 2017-04-25 18:34:21 +08:00
run-pass Auto merge of #41542 - petrochenkov:objpars2, r=nikomatsakis 2017-04-28 22:28:11 +00:00
run-pass-fulldeps Implement a file-path remapping feature in support of debuginfo and reproducible builds. 2017-04-26 15:44:02 +02:00
run-pass-valgrind Removes FIXMEs related to #22405 2017-01-31 21:27:13 -05:00
rustdoc Re-enable hoedown by default 2017-04-22 13:25:14 +02:00
ui Auto merge of #39291 - Freyskeyd:check_context_E0423, r=petrochenkov 2017-04-29 15:18:52 +00:00
ui-fulldeps/custom-derive Separate "ui-fulldeps" tests from "ui" tests 2017-03-04 21:38:26 +03:00
COMPILER_TESTS.md Move COMPILER_TESTS.md out of the root directory 2017-02-25 00:13:00 -06:00