1
Fork 0

Continue compilation even if inherent impl checks fail

This commit is contained in:
Oli Scherer 2024-02-14 21:04:51 +00:00
parent ee9c7c940c
commit c1bb352c8b
13 changed files with 244 additions and 60 deletions

View file

@ -15,5 +15,6 @@ pub struct I8<const F: i8>;
impl <I8<{i8::MIN}> as Identity>::Identity {
//~^ ERROR no nominal type found for inherent implementation
//~| ERROR no associated item named `MIN` found for type `i8`
pub fn foo(&self) {}
}