summaryrefslogtreecommitdiff
path: root/tests/ui/const-generics/issues/issue-68366.min.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/issues/issue-68366.min.stderr')
-rw-r--r--tests/ui/const-generics/issues/issue-68366.min.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/const-generics/issues/issue-68366.min.stderr b/tests/ui/const-generics/issues/issue-68366.min.stderr
index 276f91e76dd..10b5a06682f 100644
--- a/tests/ui/const-generics/issues/issue-68366.min.stderr
+++ b/tests/ui/const-generics/issues/issue-68366.min.stderr
@@ -13,7 +13,7 @@ error: `Option<usize>` is forbidden as the type of a const generic parameter
LL | struct Collatz<const N: Option<usize>>;
| ^^^^^^^^^^^^^
|
- = note: the only supported types are integers, `bool` and `char`
+ = note: the only supported types are integers, `bool`, and `char`
help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
|
LL + #![feature(adt_const_params)]