diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-06-24 14:28:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-24 14:28:43 +0200 |
| commit | 2a6e660ae17f399d93ad9104d8b9a6075d2e84ce (patch) | |
| tree | f7b1d9c43b177a27909559293dd96ca22249e5f1 /src/libstd/sys/unix/stack_overflow.rs | |
| parent | 45de677b1e2a95f14fd9bce030c8fc60bdf5642f (diff) | |
| parent | 037e930df7983577a2093732de0bd2c1252a4e37 (diff) | |
| download | rust-2a6e660ae17f399d93ad9104d8b9a6075d2e84ce.tar.gz rust-2a6e660ae17f399d93ad9104d8b9a6075d2e84ce.zip | |
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.
Diffstat (limited to 'src/libstd/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
