rust/src/test/ui/issues/issue-39559.stderr

12 lines
456 B
Plaintext
Raw Normal View History

error[E0599]: no function or associated item named `dim` found for type parameter `D` in the current scope
2018-12-07 12:15:36 -06:00
--> $DIR/issue-39559.rs:14:21
2018-07-15 16:11:54 -05:00
|
LL | entries: [T; D::dim()],
2019-03-10 18:20:15 -05:00
| ^^^ function or associated item not found in `D`
2018-07-15 16:11:54 -05:00
|
= help: items from traits can only be used if the type parameter is bounded by the trait
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.