From 5edd11e1081ec2bc37a74966ecdb8a33d675bb08 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 22 Jul 2023 03:07:23 +0000 Subject: [PATCH] ices/83531.rs: fixed with errors === stdout === === stderr === error[E0106]: missing lifetime specifier --> /home/runner/work/glacier/glacier/ices/83531.rs:3:8 | 3 | b: &VTable, | ^ expected named lifetime parameter | help: consider introducing a named lifetime parameter | 1 ~ union Foo<'a> { 2 | a: isize, 3 ~ b: &'a VTable, | error[E0412]: cannot find type `VTable` in this scope --> /home/runner/work/glacier/glacier/ices/83531.rs:3:9 | 3 | b: &VTable, | ^^^^^^ not found in this scope error[E0601]: `main` function not found in crate `83531` --> /home/runner/work/glacier/glacier/ices/83531.rs:7:2 | 7 | } | ^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/83531.rs` error: aborting due to 3 previous errors Some errors have detailed explanations: E0106, E0412, E0601. For more information about an error, try `rustc --explain E0106`. ============== --- {ices => fixed}/83531.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/83531.rs (100%) diff --git a/ices/83531.rs b/fixed/83531.rs similarity index 100% rename from ices/83531.rs rename to fixed/83531.rs