From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/typeck/issue-87181/enum-variant.stderr | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/ui/typeck/issue-87181/enum-variant.stderr (limited to 'tests/ui/typeck/issue-87181/enum-variant.stderr') diff --git a/tests/ui/typeck/issue-87181/enum-variant.stderr b/tests/ui/typeck/issue-87181/enum-variant.stderr new file mode 100644 index 000000000..d313a887a --- /dev/null +++ b/tests/ui/typeck/issue-87181/enum-variant.stderr @@ -0,0 +1,14 @@ +error[E0599]: no method named `foo` found for enum constructor `fn() -> Foo {Foo::Tup}` in the current scope + --> $DIR/enum-variant.rs:14:15 + | +LL | thing.bar.foo(); + | ^^^ method not found in `fn() -> Foo {Foo::Tup}` + | +help: use parentheses to construct this tuple variant + | +LL | (thing.bar)().foo(); + | + +++ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0599`. -- cgit v1.2.3