From ad3289e5e1b927dc25f38cd5f9fd178b4d5eed89 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 12 Feb 2022 12:04:55 +0000 Subject: [PATCH] ices/93835.rs: fixed with errors === stdout === === stderr === error: comparison operators cannot be chained --> /home/runner/work/glacier/glacier/ices/93835.rs:2:8 | 1 | fn e() { | - while parsing this struct 2 | p:a> | ^ ^ | = help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments = help: or use `(...)` if you meant to specify fn arguments error[E0425]: cannot find value `p` in this scope --> /home/runner/work/glacier/glacier/ices/93835.rs:2:5 | 2 | p:a> | ^ not found in this scope | help: you might have meant to write a `struct` literal | 1 ~ fn e() { SomeStruct { 2 | p:a> 3 ~ }} | help: maybe you meant to write a path separator here | 2 | p::a> | ~~ help: maybe you meant to write an assignment here | 2 | let p:a> | ~~~~~ error[E0658]: associated const equality is incomplete --> /home/runner/work/glacier/glacier/ices/93835.rs:2:13 | 2 | p:a> | ^^^ | = note: see issue #92827 for more information = help: add `#![feature(associated_const_equality)]` to the crate attributes to enable error[E0658]: associated type bounds are unstable --> /home/runner/work/glacier/glacier/ices/93835.rs:2:9 | 2 | p:a> | ^^^^^^^^ | = note: see issue #52662 for more information = help: add `#![feature(associated_type_bounds)]` to the crate attributes to enable error[E0601]: `main` function not found in crate `93835` --> /home/runner/work/glacier/glacier/ices/93835.rs:1:1 | 1 | / fn e() { 2 | | p:a> 3 | | } | |_^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/93835.rs` error: aborting due to 5 previous errors Some errors have detailed explanations: E0425, E0601, E0658. For more information about an error, try `rustc --explain E0425`. ============== --- {ices => fixed}/93835.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/93835.rs (100%) diff --git a/ices/93835.rs b/fixed/93835.rs similarity index 100% rename from ices/93835.rs rename to fixed/93835.rs