type they provide an implementation for.
This breaks code like:
mod foo {
struct Foo { ... }
}
impl foo::Foo {
...
}
Change this code to:
mod foo {
struct Foo { ... }
impl Foo {
...
}
}
Closes #17059.
RFC #155.
[breaking-change]
r? @brson
|
||
|---|---|---|
| .. | ||
| common.rs | ||
| compiletest.rs | ||
| errors.rs | ||
| header.rs | ||
| procsrv.rs | ||
| runtest.rs | ||
| util.rs | ||