From 3516a16eebc93c2ebcf049ce9bb83748f365a57d Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Fri, 18 Mar 2022 20:45:15 -0700 Subject: suggest removing type ascription in bad position --- .../issues/issue-35813-postfix-after-cast.stderr | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) (limited to 'src/test/ui/parser') diff --git a/src/test/ui/parser/issues/issue-35813-postfix-after-cast.stderr b/src/test/ui/parser/issues/issue-35813-postfix-after-cast.stderr index e96b67da336..6823a426823 100644 --- a/src/test/ui/parser/issues/issue-35813-postfix-after-cast.stderr +++ b/src/test/ui/parser/issues/issue-35813-postfix-after-cast.stderr @@ -19,6 +19,11 @@ help: try surrounding the expression in parentheses | LL | (vec![1, 2, 3]: Vec)[0]; | + + +help: alternatively, remove the type ascription + | +LL - vec![1, 2, 3]: Vec[0]; +LL + vec![1, 2, 3][0]; + | error: casts cannot be followed by indexing --> $DIR/issue-35813-postfix-after-cast.rs:17:5 @@ -41,6 +46,11 @@ help: try surrounding the expression in parentheses | LL | ((&[0i32]): &[i32; 1])[0]; | + + +help: alternatively, remove the type ascription + | +LL - (&[0i32]): &[i32; 1][0]; +LL + (&[0i32])[0]; + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:39:13 @@ -52,6 +62,11 @@ help: try surrounding the expression in parentheses | LL | let _ = (0i32: i32: i32).count_ones(); | + + +help: alternatively, remove the type ascription + | +LL - let _ = 0i32: i32: i32.count_ones(); +LL + let _ = 0i32: i32.count_ones(); + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:41:13 @@ -63,6 +78,11 @@ help: try surrounding the expression in parentheses | LL | let _ = (0 as i32: i32).count_ones(); | + + +help: alternatively, remove the type ascription + | +LL - let _ = 0 as i32: i32.count_ones(); +LL + let _ = 0 as i32.count_ones(); + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:43:13 @@ -107,6 +127,11 @@ help: try surrounding the expression in parentheses | LL | let _ = (0i32: i32).count_ones(): u32; | + + +help: alternatively, remove the type ascription + | +LL - let _ = 0i32: i32.count_ones(): u32; +LL + let _ = 0i32.count_ones(): u32; + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:51:13 @@ -129,6 +154,11 @@ help: try surrounding the expression in parentheses | LL | let _ = (0i32: i32).count_ones() as u32; | + + +help: alternatively, remove the type ascription + | +LL - let _ = 0i32: i32.count_ones() as u32; +LL + let _ = 0i32.count_ones() as u32; + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:55:13 @@ -151,6 +181,11 @@ help: try surrounding the expression in parentheses | LL | let _ = (0i32: i32: i32).count_ones() as u32 as i32; | + + +help: alternatively, remove the type ascription + | +LL - let _ = 0i32: i32: i32.count_ones() as u32 as i32; +LL + let _ = 0i32: i32.count_ones() as u32 as i32; + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:62:13 @@ -198,6 +233,11 @@ help: try surrounding the expression in parentheses | LL | (0: i32).max(0); | + + +help: alternatively, remove the type ascription + | +LL - 0: i32.max(0); +LL + 0.max(0); + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:92:8 @@ -220,6 +260,11 @@ help: try surrounding the expression in parentheses | LL | if (5u64: u64).max(0) == 0 { | + + +help: alternatively, remove the type ascription + | +LL - if 5u64: u64.max(0) == 0 { +LL + if 5u64.max(0) == 0 { + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:102:9 @@ -242,6 +287,11 @@ help: try surrounding the expression in parentheses | LL | (5u64: u64).max(0) == 0 | + + +help: alternatively, remove the type ascription + | +LL - 5u64: u64.max(0) == 0 +LL + 5u64.max(0) == 0 + | error: casts cannot be followed by indexing --> $DIR/issue-35813-postfix-after-cast.rs:111:24 @@ -264,6 +314,11 @@ help: try surrounding the expression in parentheses | LL | static bar2: &[i32] = &((&[1i32,2,3]: &[i32; 3])[0..1]); | + + +help: alternatively, remove the type ascription + | +LL - static bar2: &[i32] = &(&[1i32,2,3]: &[i32; 3][0..1]); +LL + static bar2: &[i32] = &(&[1i32,2,3][0..1]); + | error: casts cannot be followed by `?` --> $DIR/issue-35813-postfix-after-cast.rs:119:5 @@ -286,6 +341,11 @@ help: try surrounding the expression in parentheses | LL | (Err(0u64): Result)?; | + + +help: alternatively, remove the type ascription + | +LL - Err(0u64): Result?; +LL + Err(0u64)?; + | error: casts cannot be followed by a function call --> $DIR/issue-35813-postfix-after-cast.rs:145:5 @@ -308,6 +368,11 @@ help: try surrounding the expression in parentheses | LL | (drop_ptr: fn(u8))(0); | + + +help: alternatively, remove the type ascription + | +LL - drop_ptr: fn(u8)(0); +LL + drop_ptr(0); + | error: casts cannot be followed by `.await` --> $DIR/issue-35813-postfix-after-cast.rs:152:5 @@ -330,6 +395,11 @@ help: try surrounding the expression in parentheses | LL | (Box::pin(noop()): Pin>).await; | + + +help: alternatively, remove the type ascription + | +LL - Box::pin(noop()): Pin>.await; +LL + Box::pin(noop()).await; + | error: casts cannot be followed by a field access --> $DIR/issue-35813-postfix-after-cast.rs:167:5 @@ -352,6 +422,11 @@ help: try surrounding the expression in parentheses | LL | (Foo::default(): Foo).bar; | + + +help: alternatively, remove the type ascription + | +LL - Foo::default(): Foo.bar; +LL + Foo::default().bar; + | error: casts cannot be followed by a method call --> $DIR/issue-35813-postfix-after-cast.rs:84:9 @@ -374,6 +449,11 @@ help: try surrounding the expression in parentheses | LL | (if true { 33 } else { 44 }: i32).max(0) | + + +help: alternatively, remove the type ascription + | +LL - if true { 33 } else { 44 }: i32.max(0) +LL + if true { 33 } else { 44 }.max(0) + | error[E0214]: parenthesized type parameters may only be used with a `Fn` trait --> $DIR/issue-35813-postfix-after-cast.rs:131:13 -- cgit 1.4.1-3-g733a5