Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dc40430

Browse files
committedOct 3, 2021
Move test to correct path.
1 parent 3da9dea commit dc40430

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/test/ui/traits/issue-89118.rs ‎src/test/ui/higher-rank-trait-bounds/normalize-under-binder/issue-89118.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ trait TimerContext {
1717
impl<C> TimerContext for C
1818
where
1919
C: StackContext,
20-
//~^ ERROR: is not satisfied [E0277]
20+
//~^ ERROR: is not satisfied [E0277]
2121
{
2222
type Handler = Ctx<C::Dispatcher>;
23-
//~^ ERROR: is not satisfied [E0277]
23+
//~^ ERROR: is not satisfied [E0277]
2424
}
2525

2626
struct EthernetWorker<C>(C)
2727
where
2828
Ctx<()>: for<'a> BufferUdpStateContext<&'a ()>;
2929
impl<C> EthernetWorker<C> {}
30-
//~^ ERROR: is not satisfied [E0277]
30+
//~^ ERROR: is not satisfied [E0277]
3131

3232
fn main() {}

0 commit comments

Comments
 (0)
Failed to load comments.