]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/generic_const_exprs/eval-privacy.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / const-generics / generic_const_exprs / eval-privacy.stderr
CommitLineData
5869c6ff 1error[E0446]: private type `fn(u8) -> u8 {my_const_fn}` in public interface
a2a8927a 2 --> $DIR/eval-privacy.rs:16:5
5869c6ff
XL
3 |
4LL | type AssocTy = Const<{ my_const_fn(U) }>;
064997fb 5 | ^^^^^^^^^^^^ can't leak private type
5869c6ff
XL
6...
7LL | const fn my_const_fn(val: u8) -> u8 {
8 | ----------------------------------- `fn(u8) -> u8 {my_const_fn}` declared as private
9
a2a8927a 10error: aborting due to previous error
5869c6ff
XL
11
12For more information about this error, try `rustc --explain E0446`.