rust/src/test
Dylan DPC 2a6e660ae1
Rollup merge of #73652 - da-x:add-reexported-to-use-suggestions, r=petrochenkov
Add re-exports to use suggestions

In the following example, an inaccessible path is suggested via `use foo::bar::X;` whereas an accessible public exported path can be suggested instead.

```rust
mod foo {
    mod bar {
        pub struct X;
    }
    pub use self::bar::X;
}

fn main() { X; }
```

This fixes the issue.
2020-06-24 14:28:43 +02:00
..
assembly Add initial asm!() support for hexagon 2020-06-16 08:58:13 -05:00
auxiliary test: Fix warnings in rust_test_helpers.c 2020-05-06 23:54:05 +03:00
codegen Auto merge of #73563 - Manishearth:rollup-oowgwwm, r=Manishearth 2020-06-20 22:53:46 +00:00
codegen-units Change how compiler-builtins gets many CGUs 2020-06-15 07:38:00 -07:00
compile-fail Rollup merge of #72934 - christianpoveda:mut-borrows-in-consts, r=oli-obk 2020-06-19 19:42:51 -07:00
debuginfo Implement new gdb/lldb pretty-printers 2020-06-09 16:13:11 +03:00
incremental Auto merge of #72520 - jonas-schievink:cleanup-userty, r=matthewjasper 2020-05-25 06:17:15 +00:00
mir-opt Rollup merge of #73613 - oli-obk:const_prop_miscompile, r=wesleywiser 2020-06-23 13:10:13 -07:00
pretty asm: Allow multiple template strings; interpret them as newline-separated 2020-06-15 12:35:27 -07:00
run-make Enable static-pie for the x86_64-unknown-linux-musl target 2020-06-15 14:04:48 +02:00
run-make-fulldeps compiletest: Add directives to detect sanitizer support 2020-06-13 14:24:30 +02:00
run-pass-valgrind
rustdoc Rollup merge of #73452 - matthewjasper:auto-rec, r=nikomatsakis 2020-06-19 19:43:07 -07:00
rustdoc-js rustdoc: Fix doc aliases with crate filtering 2020-06-23 09:27:37 +01:00
rustdoc-js-std Make current crate aliases go first 2020-05-14 11:36:02 +02:00
rustdoc-ui Rollup merge of #72780 - GuillaumeGomez:enforce-doc-alias-check, r=ollie27 2020-06-23 13:09:59 -07:00
rustfix
ui Rollup merge of #73652 - da-x:add-reexported-to-use-suggestions, r=petrochenkov 2020-06-24 14:28:43 +02:00
ui-fulldeps make all uses of ty::Error or ConstKind::Error delay a span bug 2020-06-15 18:25:58 -05:00
COMPILER_TESTS.md