2020-08-20 05:15:48 +02:00
|
|
|
error: Rhai function names may not contain dot
|
2020-08-24 00:53:30 +02:00
|
|
|
--> $DIR/rhai_fn_rename_dot.rs:12:22
|
2020-08-20 05:15:48 +02:00
|
|
|
|
|
|
|
|
12 | #[rhai_fn(name = "foo.bar")]
|
2020-08-24 00:53:30 +02:00
|
|
|
| ^^^^^^^^^
|
2020-08-20 05:15:48 +02:00
|
|
|
|
2020-09-11 16:45:15 +02:00
|
|
|
error[E0433]: failed to resolve: use of undeclared crate or module `test_module`
|
2020-08-20 05:15:48 +02:00
|
|
|
--> $DIR/rhai_fn_rename_dot.rs:23:8
|
|
|
|
|
|
|
|
|
23 | if test_module::test_fn(n) {
|
2020-09-11 16:45:15 +02:00
|
|
|
| ^^^^^^^^^^^ use of undeclared crate or module `test_module`
|