File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
hir-def/src/macro_expansion_tests Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ enum Command {
336336}
337337
338338impl <> $crate::cmp::PartialOrd for Command< > where {
339- fn partial_cmp(&self , other: &Self ) -> $crate::option::Option::Option <$crate::cmp::Ordering> {
339+ fn partial_cmp(&self , other: &Self ) -> $crate::option::Option<$crate::cmp::Ordering> {
340340 match $crate::intrinsics::discriminant_value(self ).partial_cmp(&$crate::intrinsics::discriminant_value(other)) {
341341 $crate::option::Option::Some($crate::cmp::Ordering::Equal)=> {
342342 match (self , other) {
Original file line number Diff line number Diff line change @@ -969,7 +969,7 @@ fn partial_ord_expand(
969969 span,
970970 ) ;
971971 quote ! { span =>
972- fn partial_cmp( & self , other: & Self ) -> #krate:: option:: Option :: Option <#krate:: cmp:: Ordering > {
972+ fn partial_cmp( & self , other: & Self ) -> #krate:: option:: Option <#krate:: cmp:: Ordering > {
973973 #body
974974 }
975975 }
Original file line number Diff line number Diff line change 11//! Defines [`SyntaxKind`] -- a fieldless enum of all possible syntactic
22//! constructs of the Rust language.
33
4+ #[ rustfmt:: skip]
45mod generated;
56
67use crate :: Edition ;
You can’t perform that action at this time.
0 commit comments