]> git.proxmox.com Git - rustc.git/blame - tests/ui/const-generics/issues/issue-63322-forbid-dyn.min.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / const-generics / issues / issue-63322-forbid-dyn.min.stderr
CommitLineData
1b1a35ee 1error: `&'static (dyn A + 'static)` is forbidden as the type of a const generic parameter
5869c6ff 2 --> $DIR/issue-63322-forbid-dyn.rs:9:18
1b1a35ee
XL
3 |
4LL | fn test<const T: &'static dyn A>() {
5 | ^^^^^^^^^^^^^^
6 |
7 = note: the only supported types are integers, `bool` and `char`
781aab86 8 = help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
1b1a35ee 9
4b012472 10error: aborting due to 1 previous error
1b1a35ee 11