2023-02-09 13:45:01 -06:00
|
|
|
// This test ensures that if implementation on projections is supported,
|
|
|
|
// it doesn't end in very weird cycle error.
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
pub trait Identity {
|
|
|
|
type Identity: ?Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ?Sized> Identity for T {
|
|
|
|
type Identity = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct I8<const F: i8>;
|
|
|
|
|
|
|
|
impl <I8<{i8::MIN}> as Identity>::Identity {
|
|
|
|
//~^ ERROR no nominal type found for inherent implementation
|
2024-02-14 15:04:51 -06:00
|
|
|
//~| ERROR no associated item named `MIN` found for type `i8`
|
2023-02-09 13:45:01 -06:00
|
|
|
pub fn foo(&self) {}
|
|
|
|
}
|