Remove tests/ui/impl-trait/in-trait/new-lowering-strategy in favor of using revisions on existing tests

This commit is contained in:
Santiago Pastorino 2023-03-07 18:27:38 -03:00
parent 24c0b81c1f
commit 8a5574bf62
No known key found for this signature in database
GPG Key ID: 8131A24E0C79EFAF
2 changed files with 0 additions and 28 deletions

View File

@ -1,17 +0,0 @@
// check-pass
// compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
#![feature(return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
trait Foo {
fn foo() -> impl Sized;
}
impl Foo for String {
fn foo() -> i32 {
22
}
}
fn main() {}

View File

@ -1,11 +0,0 @@
// check-pass
// compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
#![feature(return_position_impl_trait_in_trait)]
#![allow(incomplete_features)]
trait Foo {
fn foo() -> impl Sized;
}
fn main() {}