2018-07-15 16:11:54 -05:00
|
|
|
error[E0599]: no function or associated item named `dim` found for type `D` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-39559.rs:14:18
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | entries: [T; D::dim()],
|
|
|
|
| ^^^^^^ function or associated item not found in `D`
|
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `dim`, perhaps you need to implement it:
|
|
|
|
candidate #1: `Dim`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|