rhai/codegen/ui_tests/export_fn_raw_return.stderr
2021-10-23 12:12:23 +08:00

10 lines
464 B
Plaintext

error[E0599]: the method `map` exists for type `bool`, but its trait bounds were not satisfied
--> ui_tests/export_fn_raw_return.rs:10:33
|
10 | pub fn test_fn(input: Point) -> bool {
| ^^^^ method cannot be called on `bool` due to unsatisfied trait bounds
|
= note: the following trait bounds were not satisfied:
`bool: std::iter::Iterator`
which is required by `&mut bool: std::iter::Iterator`