We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3eefe2 commit c2d7ffbCopy full SHA for c2d7ffb
src/test/ui/parser/issue-35813-postfix-after-cast.rs
@@ -22,10 +22,10 @@ pub fn index_after_cast_to_index() {
22
23
pub fn cast_after_cast() {
24
if 5u64 as i32 as u16 == 0u16 {
25
-
+
26
}
27
if 5u64: u64: u64 == 0u64 {
28
29
30
let _ = 5u64: u64: u64 as u8 as i8 == 9i8;
31
let _ = 0i32: i32: i32;
@@ -107,7 +107,7 @@ pub fn cast_then_call() {
107
pub fn cast_to_fn_should_work() {
108
let drop_ptr = drop as fn(u8);
109
drop as fn(u8);
110
- drop_ptr: fn(u8);
+ drop_ptr: fn(u8);
111
112
113
pub fn parens_after_cast_error() {
0 commit comments