]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/issue-75627.stderr
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / traits / issue-75627.stderr
1 error[E0412]: cannot find type `T` in this scope
2   --> $DIR/issue-75627.rs:3:26
3    |
4 LL | unsafe impl Send for Foo<T> {}
5    |                          ^ not found in this scope
6    |
7 help: you might be missing a type parameter
8    |
9 LL | unsafe impl<T> Send for Foo<T> {}
10    |            +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0412`.