]> git.lizzy.rs Git - rust.git/blob - src/test/ui/builtin-superkinds/builtin-superkinds-self-type.stderr
Auto merge of #88000 - bjorn3:fix_cg_llvm_clif_compile, r=Mark-Simulacrum
[rust.git] / src / test / ui / builtin-superkinds / builtin-superkinds-self-type.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/builtin-superkinds-self-type.rs:10:16
3    |
4 LL | impl <T: Sync> Foo for T { }
5    |       --       ^^^ ...so that the type `T` will meet its required lifetime bounds
6    |       |
7    |       help: consider adding an explicit lifetime bound...: `T: 'static +`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0310`.