blob: e2d8c5ca0e1484ce30ac90daf2187b267c09d7fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0741]: `&'static (dyn A + 'static)` can't be used as a const parameter type
--> $DIR/issue-63322-forbid-dyn.rs:9:18
|
LL | fn test<const T: &'static dyn A>() {
| ^^^^^^^^^^^^^^
|
= note: `(dyn A + 'static)` must implement `ConstParamTy`, but it does not
error: aborting due to previous error
For more information about this error, try `rustc --explain E0741`.
|