rust/tests/ui/impl-trait/issue-55872-3.rs
Hans Wennborg 029add206f Add --diagnostic-width to some tests failing after 1a0c502183
Otherwise the tests would fail depending on the execution environment.
2024-11-06 20:02:42 +01:00

21 lines
341 B
Rust

//@ edition:2018
//@compile-flags: --diagnostic-width=300
#![feature(impl_trait_in_assoc_type)]
pub trait Bar {
type E: Copy;
fn foo<T>() -> Self::E;
}
impl<S> Bar for S {
type E = impl std::marker::Copy;
fn foo<T>() -> Self::E {
//~^ ERROR : Copy` is not satisfied [E0277]
async {}
}
}
fn main() {}