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[E0637]: `&` without an explicit lifetime name cannot be used here
--> /home/runner/work/glacier/glacier/ices/109143.rs:1:21
|
1 | struct Bar<const N: &(for<'a> S<'a>)>;
| ^ explicit lifetime name needed here
error[E0405]: cannot find trait `S` in this scope
--> /home/runner/work/glacier/glacier/ices/109143.rs:1:31
|
1 | struct Bar<const N: &(for<'a> S<'a>)>;
| ^ not found in this scope
error[E0601]: `main` function not found in crate `109143`
--> /home/runner/work/glacier/glacier/ices/109143.rs:1:39
|
1 | struct Bar<const N: &(for<'a> S<'a>)>;
| ^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/109143.rs`
error[E0782]: trait objects must include the `dyn` keyword
--> /home/runner/work/glacier/glacier/ices/109143.rs:1:23
|
1 | struct Bar<const N: &(for<'a> S<'a>)>;
| ^^^^^^^^^^^^^
|
help: add `dyn` keyword before this trait
|
1 | struct Bar<const N: &(dyn for<'a> S<'a>)>;
| +++
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0405, E0601, E0637, E0782.
For more information about an error, try `rustc --explain E0405`.
==============
0 commit comments