forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#127202 - oli-obk:do_not_count_errors, r=wes…
…leywiser Remove global error count checks from typeck Some of these are not reachable anymore, others can now rely on information local to the current typeck run. One check was actually invalid, because it was relying on wfcheck running before typeck, which is not guaranteed in the query system and usually easy to create ICEing examples for via const eval (which runs typeck before wfcheck)
- Loading branch information
Showing
8 changed files
with
87 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//! The same as the non-ICE test, but const eval will run typeck of | ||
//! `get` before running wfcheck (as that may in itself trigger const | ||
//! eval again, and thus cause bogus cycles). This used to ICE because | ||
//! we asserted that an error had already been emitted. | ||
use std::ops::Deref; | ||
|
||
struct Foo(u32); | ||
impl Foo { | ||
const fn get<R: Deref<Target = Self>>(self: R) -> u32 { | ||
//~^ ERROR: `R` cannot be used as the type of `self` | ||
//~| ERROR destructor of `R` cannot be evaluated at compile-time | ||
self.0 | ||
//~^ ERROR cannot borrow here, since the borrowed element may contain interior mutability | ||
//~| ERROR cannot call non-const fn `<R as Deref>::deref` in constant function | ||
} | ||
} | ||
|
||
const FOO: () = { | ||
let foo = Foo(1); | ||
foo.get::<&Foo>(); | ||
}; | ||
|
||
const BAR: [(); { | ||
FOO; | ||
0 | ||
}] = []; | ||
|
||
fn main() {} |
46 changes: 46 additions & 0 deletions
46
tests/ui/self/arbitrary-self-from-method-substs-ice.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
error[E0658]: cannot borrow here, since the borrowed element may contain interior mutability | ||
--> $DIR/arbitrary-self-from-method-substs-ice.rs:13:9 | ||
| | ||
LL | self.0 | ||
| ^^^^ | ||
| | ||
= note: see issue #80384 <https://github.com/rust-lang/rust/issues/80384> for more information | ||
= help: add `#![feature(const_refs_to_cell)]` to the crate attributes to enable | ||
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date | ||
|
||
error[E0015]: cannot call non-const fn `<R as Deref>::deref` in constant functions | ||
--> $DIR/arbitrary-self-from-method-substs-ice.rs:13:9 | ||
| | ||
LL | self.0 | ||
| ^^^^^^ | ||
| | ||
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants | ||
help: add `#![feature(const_trait_impl)]` to the crate attributes to enable | ||
| | ||
LL + #![feature(const_trait_impl)] | ||
| | ||
|
||
error[E0493]: destructor of `R` cannot be evaluated at compile-time | ||
--> $DIR/arbitrary-self-from-method-substs-ice.rs:10:43 | ||
| | ||
LL | const fn get<R: Deref<Target = Self>>(self: R) -> u32 { | ||
| ^^^^ the destructor for this type cannot be evaluated in constant functions | ||
... | ||
LL | } | ||
| - value is dropped here | ||
|
||
error[E0658]: `R` cannot be used as the type of `self` without the `arbitrary_self_types` feature | ||
--> $DIR/arbitrary-self-from-method-substs-ice.rs:10:49 | ||
| | ||
LL | const fn get<R: Deref<Target = Self>>(self: R) -> u32 { | ||
| ^ | ||
| | ||
= note: see issue #44874 <https://github.com/rust-lang/rust/issues/44874> for more information | ||
= help: add `#![feature(arbitrary_self_types)]` to the crate attributes to enable | ||
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date | ||
= help: consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`) | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
Some errors have detailed explanations: E0015, E0493, E0658. | ||
For more information about an error, try `rustc --explain E0015`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters