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 --- src/test/ui/typeck/type-placeholder-fn-in-const.rs | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/test/ui/typeck/type-placeholder-fn-in-const.rs (limited to 'src/test/ui/typeck/type-placeholder-fn-in-const.rs') diff --git a/src/test/ui/typeck/type-placeholder-fn-in-const.rs b/src/test/ui/typeck/type-placeholder-fn-in-const.rs deleted file mode 100644 index ab2e2d8c5..000000000 --- a/src/test/ui/typeck/type-placeholder-fn-in-const.rs +++ /dev/null @@ -1,14 +0,0 @@ -struct MyStruct; - -trait Test { - const TEST: fn() -> _; - //~^ ERROR: the placeholder `_` is not allowed within types on item signatures for functions [E0121] - //~| ERROR: the placeholder `_` is not allowed within types on item signatures for constants [E0121] -} - -impl Test for MyStruct { - const TEST: fn() -> _ = 42; - //~^ ERROR: the placeholder `_` is not allowed within types on item signatures for functions [E0121] -} - -fn main() {} -- cgit v1.2.3