about summary refs log tree commit diff
path: root/src/libstd/sys/unix/stack_overflow.rs
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-06-24 14:28:43 +0200
committerGitHub <noreply@github.com>2020-06-24 14:28:43 +0200
commit2a6e660ae17f399d93ad9104d8b9a6075d2e84ce (patch)
treef7b1d9c43b177a27909559293dd96ca22249e5f1 /src/libstd/sys/unix/stack_overflow.rs
parent45de677b1e2a95f14fd9bce030c8fc60bdf5642f (diff)
parent037e930df7983577a2093732de0bd2c1252a4e37 (diff)
downloadrust-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