blob: 23916a3ba440c0919623229701881fea5b416ece [file] [log] [blame]
error[E0283]: type annotations needed
--> $DIR/issue-63496.rs:4:21
|
LL | const C: usize;
| --------------- required by `A::C`
LL |
LL | fn f() -> ([u8; A::C], [u8; A::C]);
| ^^^^ cannot infer type
|
= note: cannot resolve `_: A`
error[E0283]: type annotations needed
--> $DIR/issue-63496.rs:4:33
|
LL | const C: usize;
| --------------- required by `A::C`
LL |
LL | fn f() -> ([u8; A::C], [u8; A::C]);
| ^^^^ cannot infer type
|
= note: cannot resolve `_: A`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0283`.