rhai/codegen/ui_tests/return_mut_ref.stderr

12 lines
361 B
Plaintext
Raw Normal View History

2020-08-01 18:52:26 +02:00
error: cannot return a reference to Rhai
--> $DIR/return_mut_ref.rs:12:38
|
12 | pub fn test_fn(input: &mut Clonable) -> &mut bool {
| ^^^^^^^^^^^^
error[E0425]: cannot find function `test_fn` in this scope
2020-08-03 02:27:19 +02:00
--> $DIR/return_mut_ref.rs:23:8
2020-08-01 18:52:26 +02:00
|
2020-08-03 02:27:19 +02:00
23 | if test_fn(n) {
2020-08-01 18:52:26 +02:00
| ^^^^^^^ not found in this scope