Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions tests/ui/structs/ice-missing-field-fn-sig-closure.rs

@Kivooeo Kivooeo Aug 10, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also add a links to issue in both tests

View changes since the review

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// issue-link: https://github.com/rust-lang/rust/issues/160591
// A closure call with a struct literal missing a field shouldn't ICE when checking the fn sig.

trait Context {}
struct Wrapper<C: Context + 'static> {
container: &'static C,
}

fn main() {
let c = |_: Wrapper<()>| {}; //~ ERROR the trait bound `(): Context` is not satisfied
c(Wrapper { /* missing */ });
//~^ ERROR the trait bound `(): Context` is not satisfied
//~^^ ERROR missing field `container` in initializer of `Wrapper<_>`
//~^^^ ERROR the trait bound `(): Context` is not satisfied
//~^^^^ ERROR the trait bound `(): Context` is not satisfied
}
78 changes: 78 additions & 0 deletions tests/ui/structs/ice-missing-field-fn-sig-closure.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-closure.rs:10:17
|
LL | let c = |_: Wrapper<()>| {};
| ^^^^^^^^^^^ the trait `Context` is not implemented for `()`
|
help: this trait has no implementations, consider adding one
--> $DIR/ice-missing-field-fn-sig-closure.rs:4:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:5:19
|
LL | struct Wrapper<C: Context + 'static> {
| ^^^^^^^ required by this bound in `Wrapper`

error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-closure.rs:11:7
|
LL | c(Wrapper { /* missing */ });
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Context` is not implemented for `()`
|
help: this trait has no implementations, consider adding one
--> $DIR/ice-missing-field-fn-sig-closure.rs:4:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:5:19
|
LL | struct Wrapper<C: Context + 'static> {
| ^^^^^^^ required by this bound in `Wrapper`

error[E0063]: missing field `container` in initializer of `Wrapper<_>`
--> $DIR/ice-missing-field-fn-sig-closure.rs:11:7
|
LL | c(Wrapper { /* missing */ });
| ^^^^^^^ missing `container`

error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-closure.rs:11:7
|
LL | c(Wrapper { /* missing */ });
| ^^^^^^^ the trait `Context` is not implemented for `()`
|
help: this trait has no implementations, consider adding one
--> $DIR/ice-missing-field-fn-sig-closure.rs:4:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:5:19
|
LL | struct Wrapper<C: Context + 'static> {
| ^^^^^^^ required by this bound in `Wrapper`

error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-closure.rs:11:5
|
LL | c(Wrapper { /* missing */ });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Context` is not implemented for `()`
|
help: this trait has no implementations, consider adding one
--> $DIR/ice-missing-field-fn-sig-closure.rs:4:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:5:19
|
LL | struct Wrapper<C: Context + 'static> {
| ^^^^^^^ required by this bound in `Wrapper`

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0063, E0277.
For more information about an error, try `rustc --explain E0063`.
14 changes: 14 additions & 0 deletions tests/ui/structs/ice-missing-field-fn-sig-method.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// issue-link: https://github.com/rust-lang/rust/issues/160591
// A method call whose where-clause fails shouldn't ICE when checking the fn sig.

trait Context {}
struct Foo;
impl Foo {
fn take<T: Context>(&self, _: T) {}
}

fn main() {
let f = Foo;
f.take(());
//~^ ERROR the trait bound `(): Context` is not satisfied
}
22 changes: 22 additions & 0 deletions tests/ui/structs/ice-missing-field-fn-sig-method.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-method.rs:12:12
|
LL | f.take(());
| ---- ^^ the trait `Context` is not implemented for `()`
| |
| required by a bound introduced by this call
|
help: this trait has no implementations, consider adding one
--> $DIR/ice-missing-field-fn-sig-method.rs:4:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Foo::take`
--> $DIR/ice-missing-field-fn-sig-method.rs:7:16
|
LL | fn take<T: Context>(&self, _: T) {}
| ^^^^^^^ required by this bound in `Foo::take`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0277`.
Loading