summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/object-unsafety.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/new-solver/object-unsafety.rs')
-rw-r--r--tests/ui/traits/new-solver/object-unsafety.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/ui/traits/new-solver/object-unsafety.rs b/tests/ui/traits/new-solver/object-unsafety.rs
index 7bdd863a7..da843c914 100644
--- a/tests/ui/traits/new-solver/object-unsafety.rs
+++ b/tests/ui/traits/new-solver/object-unsafety.rs
@@ -10,7 +10,15 @@ fn copy<U: Setup + ?Sized>(from: &U::From) -> U::From {
pub fn copy_any<T>(t: &T) -> T {
copy::<dyn Setup<From=T>>(t)
- //~^ ERROR the trait bound `dyn Setup<From = T>: Setup` is not satisfied
+ //~^ ERROR the type `&<dyn Setup<From = T> as Setup>::From` is not well-formed
+ //~| ERROR the trait bound `dyn Setup<From = T>: Setup` is not satisfied
+ //~| ERROR mismatched types
+ //~| ERROR mismatched types
+ //~| ERROR the type `<dyn Setup<From = T> as Setup>::From` is not well-formed
+ //~| ERROR the size for values of type `<dyn Setup<From = T> as Setup>::From` cannot be known at compilation time
+
+ // FIXME(-Ztrait-solver=next): These error messages are horrible and some of them
+ // are even simple fallout from previous error.
}
fn main() {