Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codegen/ui_tests/export_fn_raw_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0599]: `bool` is not an iterator
--> ui_tests/export_fn_raw_return.rs:11:33
|
10 | #[export_fn(return_raw)]
| ------------------------ in this procedural macro expansion
| ------------------------ in this attribute macro expansion
11 | pub fn test_fn(input: Point) -> bool {
| ^^^^ `bool` is not an iterator
|
Expand Down
2 changes: 1 addition & 1 deletion codegen/ui_tests/export_mod_raw_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0599]: `bool` is not an iterator
--> ui_tests/export_mod_raw_return.rs:12:33
|
9 | #[export_module]
| ---------------- in this procedural macro expansion
| ---------------- in this attribute macro expansion
...
12 | pub fn test_fn(input: Point) -> bool {
| ^^^^ `bool` is not an iterator
Expand Down
2 changes: 1 addition & 1 deletion codegen/ui_tests/rhai_fn_non_clonable_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied
--> ui_tests/rhai_fn_non_clonable_return.rs:12:31
|
11 | #[export_fn]
| ------------ in this procedural macro expansion
| ------------ in this attribute macro expansion
12 | pub fn test_fn(input: f32) -> NonClonable {
| ^^^^^^^^^^^ the trait `Clone` is not implemented for `NonClonable`
|
Expand Down
2 changes: 1 addition & 1 deletion codegen/ui_tests/rhai_mod_non_clonable_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ error[E0277]: the trait bound `NonClonable: Clone` is not satisfied
--> ui_tests/rhai_mod_non_clonable_return.rs:12:35
|
10 | #[export_module]
| ---------------- in this procedural macro expansion
| ---------------- in this attribute macro expansion
11 | pub mod test_mod {
12 | pub fn test_fn(input: f32) -> NonClonable {
| ^^^^^^^^^^^ the trait `Clone` is not implemented for `NonClonable`
Expand Down
Loading