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 --- .../trait-where-clause.rs | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/test/ui/rfc-2632-const-trait-impl/trait-where-clause.rs (limited to 'src/test/ui/rfc-2632-const-trait-impl/trait-where-clause.rs') diff --git a/src/test/ui/rfc-2632-const-trait-impl/trait-where-clause.rs b/src/test/ui/rfc-2632-const-trait-impl/trait-where-clause.rs deleted file mode 100644 index 85ca5fc90..000000000 --- a/src/test/ui/rfc-2632-const-trait-impl/trait-where-clause.rs +++ /dev/null @@ -1,26 +0,0 @@ -#![feature(const_trait_impl)] - -#[const_trait] -trait Bar {} - -trait Foo { - fn a(); - fn b() where Self: ~const Bar; - fn c(); -} - -fn test1() { - T::a(); - T::b(); - //~^ ERROR the trait bound - T::c::(); - //~^ ERROR the trait bound -} - -fn test2() { - T::a(); - T::b(); - T::c::(); -} - -fn main() {} -- cgit v1.2.3