2022-01-13 11:38:08 -06:00
|
|
|
// Test for the ICE in rust/83718
|
|
|
|
// A blanket impl plus a local type together shouldn't result in mismatched ID issues
|
|
|
|
|
2024-07-19 09:50:47 -05:00
|
|
|
//@ has "$.index[*][?(@.name=='Load')]"
|
2022-01-13 11:38:08 -06:00
|
|
|
pub trait Load {
|
2024-07-19 09:50:47 -05:00
|
|
|
//@ has "$.index[*][?(@.name=='load')]"
|
2022-01-13 11:38:08 -06:00
|
|
|
fn load() {}
|
2024-07-19 09:50:47 -05:00
|
|
|
//@ has "$.index[*][?(@.name=='write')]"
|
2022-01-21 12:19:18 -06:00
|
|
|
fn write(self) {}
|
2022-01-13 11:38:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<P> Load for P {
|
|
|
|
fn load() {}
|
2022-01-21 12:19:18 -06:00
|
|
|
fn write(self) {}
|
2022-01-13 11:38:08 -06:00
|
|
|
}
|
|
|
|
|
2024-07-19 09:50:47 -05:00
|
|
|
//@ has "$.index[*][?(@.name=='Wrapper')]"
|
2022-01-13 11:38:08 -06:00
|
|
|
pub struct Wrapper {}
|