You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 23, 2024. It is now read-only.
=== stdout ===
=== stderr ===
error[E0061]: this function takes 3 arguments but 2 arguments were supplied
--> /home/runner/work/glacier/glacier/ices/96638.rs:7:5
|
7 | f(&x, ""); // The reference on `&x` is important to reproduce the ICE
| ^ -- an argument of type `usize` is missing
|
note: function defined here
--> /home/runner/work/glacier/glacier/ices/96638.rs:1:4
|
1 | fn f(_: usize, _: &usize, _: usize) {}
| ^ -------- --------- --------
help: provide the argument
|
7 | f({usize}, &x, {usize}); // The reference on `&x` is important to reproduce the ICE
| ~~~~~~~~~~~~~~~~~~~~~~~
error: aborting due to previous error
For more information about this error, try `rustc --explain E0061`.
==============
0 commit comments