diff --git a/codegen/ui_tests/non_clonable.stderr b/codegen/ui_tests/non_clonable.stderr index 5e50c242..83d12899 100644 --- a/codegen/ui_tests/non_clonable.stderr +++ b/codegen/ui_tests/non_clonable.stderr @@ -1,8 +1,6 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied --> ui_tests/non_clonable.rs:11:23 | -10 | #[export_fn] - | ------------ in this procedural macro expansion 11 | pub fn test_fn(input: NonClonable) -> bool { | ^^^^^^^^^^^ the trait `Clone` is not implemented for `NonClonable` | @@ -11,7 +9,6 @@ note: required by a bound in `rhai::Dynamic::cast` | | pub fn cast(self) -> T { | ^^^^^ required by this bound in `rhai::Dynamic::cast` - = note: this error originates in the attribute macro `export_fn` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider annotating `NonClonable` with `#[derive(Clone)]` | 3 | #[derive(Clone)] diff --git a/codegen/ui_tests/non_clonable_second.stderr b/codegen/ui_tests/non_clonable_second.stderr index a4c40461..241d41d6 100644 --- a/codegen/ui_tests/non_clonable_second.stderr +++ b/codegen/ui_tests/non_clonable_second.stderr @@ -1,8 +1,6 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied --> ui_tests/non_clonable_second.rs:11:27 | -10 | #[export_fn] - | ------------ in this procedural macro expansion 11 | pub fn test_fn(a: u32, b: NonClonable) -> bool { | ^^^^^^^^^^^ the trait `Clone` is not implemented for `NonClonable` | @@ -11,7 +9,6 @@ note: required by a bound in `rhai::Dynamic::cast` | | pub fn cast(self) -> T { | ^^^^^ required by this bound in `rhai::Dynamic::cast` - = note: this error originates in the attribute macro `export_fn` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider annotating `NonClonable` with `#[derive(Clone)]` | 3 | #[derive(Clone)]