rhai/codegen/ui_tests/rhai_mod_unknown_type.stderr

22 lines
598 B
Plaintext
Raw Normal View History

error[E0412]: cannot find type `Pointer` in this scope
2021-10-12 14:57:47 +02:00
--> ui_tests/rhai_mod_unknown_type.rs:12:27
|
4 | pub struct Point {
| ---------------- similarly named struct `Point` defined here
...
12 | pub fn test_fn(input: Pointer) -> bool {
| ^^^^^^^
|
help: a struct with a similar name exists
|
12 | pub fn test_fn(input: Point) -> bool {
2021-10-20 09:34:21 +02:00
| ~~~~~
help: consider importing one of these items
|
2023-06-15 05:06:14 +02:00
11 + use core::fmt::Pointer;
2021-10-29 11:59:38 +02:00
|
2023-06-15 05:06:14 +02:00
11 + use std::fmt::Pointer;
|
2023-06-15 05:06:14 +02:00
11 + use syn::__private::fmt::Pointer;
|