]> git.proxmox.com Git - rustc.git/blame - tests/ui/suggestions/issue-90213-expected-boxfuture-self-ice.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / suggestions / issue-90213-expected-boxfuture-self-ice.stderr
CommitLineData
c295e0f8
XL
1error[E0308]: mismatched types
2 --> $DIR/issue-90213-expected-boxfuture-self-ice.rs:9:19
3 |
4LL | Self::foo(None)
9ffffee4 5 | --------- ^^^^ expected `Box<Option<S>>`, found `Option<_>`
923072b8
FG
6 | |
7 | arguments to this function are incorrect
c295e0f8
XL
8 |
9 = note: expected struct `Box<Option<S>>`
10 found enum `Option<_>`
11 = note: for more on the distinction between the stack and the heap, read https://doc.rust-lang.org/book/ch15-01-box.html, https://doc.rust-lang.org/rust-by-example/std/box.html, and https://doc.rust-lang.org/std/boxed/index.html
923072b8
FG
12note: associated function defined here
13 --> $DIR/issue-90213-expected-boxfuture-self-ice.rs:7:8
14 |
15LL | fn foo(_: Box<Option<S>>) {}
16 | ^^^ -----------------
c295e0f8
XL
17help: store this in the heap by calling `Box::new`
18 |
19LL | Self::foo(Box::new(None))
20 | +++++++++ +
21
22error: aborting due to previous error
23
24For more information about this error, try `rustc --explain E0308`.