From 631cd5845e8de329d0e227aaa707d7ea228b8f8f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:20:29 +0200 Subject: Merging upstream version 1.70.0+dfsg1. Signed-off-by: Daniel Baumann --- .../return-type-notation/bad-inputs-and-output.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs (limited to 'tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs') diff --git a/tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs b/tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs new file mode 100644 index 000000000..79cee5517 --- /dev/null +++ b/tests/ui/associated-type-bounds/return-type-notation/bad-inputs-and-output.rs @@ -0,0 +1,22 @@ +// edition: 2021 + +#![feature(return_type_notation, async_fn_in_trait)] +//~^ WARN the feature `return_type_notation` is incomplete +//~| WARN the feature `async_fn_in_trait` is incomplete + +trait Trait { + async fn method() {} +} + +fn foo>() {} +//~^ ERROR argument types not allowed with return type notation +//~| ERROR associated type bounds are unstable + +fn bar (): Send>>() {} +//~^ ERROR return type not allowed with return type notation +//~| ERROR associated type bounds are unstable + +fn baz>() {} +//~^ ERROR return type notation uses `()` instead of `(..)` for elided arguments + +fn main() {} -- cgit v1.2.3