Skip to content
Open
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
15 changes: 15 additions & 0 deletions tests/ui/structs/ice-missing-field-fn-sig-closure.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// 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:9: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:3:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:4: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:10: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:3:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:4: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:10:7
|
LL | c(Wrapper { /* missing */ });
| ^^^^^^^ missing `container`

error[E0277]: the trait bound `(): Context` is not satisfied
--> $DIR/ice-missing-field-fn-sig-closure.rs:10: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:3:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:4: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:10: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:3:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Wrapper`
--> $DIR/ice-missing-field-fn-sig-closure.rs:4: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`.
13 changes: 13 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,13 @@
// 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:11: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:3:1
|
LL | trait Context {}
| ^^^^^^^^^^^^^
note: required by a bound in `Foo::take`
--> $DIR/ice-missing-field-fn-sig-method.rs:6: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