Files
rust/src
Dan Aloni 404df1cbbf 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.

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

fn main() { X; }
```

This fixes the issue.
2020-06-23 13:37:50 +03:00
..
2020-06-22 12:46:29 -04:00
2020-06-21 13:50:06 +02:00
2020-06-03 15:27:51 -04:00
2020-06-02 20:38:24 +03:00
2020-06-20 11:12:43 -07:00
2020-06-19 14:04:30 -04:00
2020-06-02 20:38:24 +03:00
2020-06-19 14:05:14 -04:00
2020-06-08 13:37:58 -07:00
2020-06-13 19:54:09 +01:00
2020-06-23 13:37:50 +03:00

This directory contains the source code of the rust project, including:

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc dev guide.