From 8508be24a97d4f0dc68a9e5ab51a7b008e1ab699 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 15 Jun 2022 03:35:45 +0000 Subject: [PATCH] ices/93022.rs: fixed with no errors === stdout === === stderr === warning: type `x2` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:32:6 | 32 | type x2 = SumOf; | ^^ help: convert the identifier to upper camel case (notice the capitalization): `X2` | = note: `#[warn(non_camel_case_types)]` on by default warning: type `x4` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:33:6 | 33 | type x4 = SumOf; | ^^ help: convert the identifier to upper camel case (notice the capitalization): `X4` warning: type `x8` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:34:6 | 34 | type x8 = SumOf; | ^^ help: convert the identifier to upper camel case (notice the capitalization): `X8` warning: type `x16` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:35:6 | 35 | type x16 = SumOf; | ^^^ help: convert the identifier to upper camel case (notice the capitalization): `X16` warning: type `x32` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:36:6 | 36 | type x32 = SumOf; | ^^^ help: convert the identifier to upper camel case (notice the capitalization): `X32` warning: type `x64` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:37:6 | 37 | type x64 = SumOf; | ^^^ help: convert the identifier to upper camel case (notice the capitalization): `X64` warning: type `x128` should have an upper camel case name --> /home/runner/work/glacier/glacier/ices/93022.rs:38:6 | 38 | type x128 = SumOf; | ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `X128` warning: type alias is never used: `One` --> /home/runner/work/glacier/glacier/ices/93022.rs:23:1 | 23 | type One = S; | ^^^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: type alias is never used: `Two` --> /home/runner/work/glacier/glacier/ices/93022.rs:24:1 | 24 | type Two = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `Three` --> /home/runner/work/glacier/glacier/ices/93022.rs:25:1 | 25 | type Three = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `Five` --> /home/runner/work/glacier/glacier/ices/93022.rs:26:1 | 26 | type Five = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `Ten` --> /home/runner/work/glacier/glacier/ices/93022.rs:27:1 | 27 | type Ten = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `TwentyFive` --> /home/runner/work/glacier/glacier/ices/93022.rs:28:1 | 28 | type TwentyFive = SumOf>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `Fifty` --> /home/runner/work/glacier/glacier/ices/93022.rs:29:1 | 29 | type Fifty = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `OneHundred` --> /home/runner/work/glacier/glacier/ices/93022.rs:30:1 | 30 | type OneHundred = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x2` --> /home/runner/work/glacier/glacier/ices/93022.rs:32:1 | 32 | type x2 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x4` --> /home/runner/work/glacier/glacier/ices/93022.rs:33:1 | 33 | type x4 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x8` --> /home/runner/work/glacier/glacier/ices/93022.rs:34:1 | 34 | type x8 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x16` --> /home/runner/work/glacier/glacier/ices/93022.rs:35:1 | 35 | type x16 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x32` --> /home/runner/work/glacier/glacier/ices/93022.rs:36:1 | 36 | type x32 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x64` --> /home/runner/work/glacier/glacier/ices/93022.rs:37:1 | 37 | type x64 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: type alias is never used: `x128` --> /home/runner/work/glacier/glacier/ices/93022.rs:38:1 | 38 | type x128 = SumOf; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: constant is never used: `value` --> /home/runner/work/glacier/glacier/ices/93022.rs:56:1 | 56 | const value: usize = ::VALUE; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ warning: constant `value` should have an upper case name --> /home/runner/work/glacier/glacier/ices/93022.rs:56:7 | 56 | const value: usize = ::VALUE; | ^^^^^ help: convert the identifier to upper case: `VALUE` | = note: `#[warn(non_upper_case_globals)]` on by default warning: 24 warnings emitted ============== --- {ices => fixed}/93022.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/93022.rs (100%) diff --git a/ices/93022.rs b/fixed/93022.rs similarity index 100% rename from ices/93022.rs rename to fixed/93022.rs