diff options
Diffstat (limited to 'tests/ui/resolve/issue-39226.stderr')
-rw-r--r-- | tests/ui/resolve/issue-39226.stderr | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-39226.stderr b/tests/ui/resolve/issue-39226.stderr new file mode 100644 index 000000000..5045ec6c3 --- /dev/null +++ b/tests/ui/resolve/issue-39226.stderr @@ -0,0 +1,21 @@ +error[E0423]: expected value, found struct `Handle` + --> $DIR/issue-39226.rs:11:17 + | +LL | struct Handle {} + | ---------------- `Handle` defined here +... +LL | handle: Handle + | ^^^^^^ + | +help: use struct literal syntax instead + | +LL | handle: Handle {} + | ~~~~~~~~~ +help: a local variable with a similar name exists + | +LL | handle: handle + | ~~~~~~ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0423`. |