File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,14 @@ fn test_u32_T_where_T_Not_impls() {
65
65
"# ] ]
66
66
. assert_debug_eq ( & test_program_ok (
67
67
"[
68
- crate Foo {
69
- trait Foo<> where [] {}
70
- impl<> Foo<> for u32 where [] {}
71
- impl<ty T> Foo<> for T where [T: Not<>] {}
68
+ crate Foo {
69
+ trait Foo<> where [] {}
70
+ impl<> Foo<> for u32 where [] {}
71
+ impl<ty T> Foo<> for T where [T: Not<>] {}
72
72
73
- trait Not<> where [] {}
74
- }
75
- ]" ,
73
+ trait Not<> where [] {}
74
+ }
75
+ ]" ,
76
76
) ) ;
77
77
}
78
78
@@ -86,14 +86,14 @@ fn test_u32_T_where_T_Is_impls() {
86
86
"# ] ]
87
87
. assert_debug_eq ( & test_program_ok (
88
88
"[
89
- crate Foo {
90
- trait Foo<> where [] {}
91
- impl<> Foo<> for u32 where [] {}
92
- impl<ty T> Foo<> for T where [T: Is<>] {}
89
+ crate Foo {
90
+ trait Foo<> where [] {}
91
+ impl<> Foo<> for u32 where [] {}
92
+ impl<ty T> Foo<> for T where [T: Is<>] {}
93
93
94
- trait Is<> where [] {}
95
- impl<> Is<> for u32 where [] {}
96
- }
97
- ]" ,
94
+ trait Is<> where [] {}
95
+ impl<> Is<> for u32 where [] {}
96
+ }
97
+ ]" ,
98
98
) ) ;
99
99
}
You can’t perform that action at this time.
0 commit comments