]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/generic_const_exprs/eval-privacy.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / const-generics / generic_const_exprs / eval-privacy.stderr
1 error[E0446]: private type `fn(u8) -> u8 {my_const_fn}` in public interface
2   --> $DIR/eval-privacy.rs:16:5
3    |
4 LL |     type AssocTy = Const<{ my_const_fn(U) }>;
5    |     ^^^^^^^^^^^^ can't leak private type
6 ...
7 LL | const fn my_const_fn(val: u8) -> u8 {
8    | ----------------------------------- `fn(u8) -> u8 {my_const_fn}` declared as private
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0446`.