]> git.proxmox.com Git - rustc.git/blobdiff - tests/ui/traits/associated_type_bound/assoc_type_bound_with_struct.rs
Update upstream source from tag 'upstream/1.70.0+dfsg1'
[rustc.git] / tests / ui / traits / associated_type_bound / assoc_type_bound_with_struct.rs
index 471a6b836b51e56932d2ae5a56ac3dc8c007c578..8e43b7249f7c0fb29b5479e556a582489db49514 100644 (file)
@@ -18,6 +18,6 @@ fn qux<'a, T: Bar>(_: &'a T) where <&'a T as Bar>::Baz: String { //~ ERROR expec
 
 fn issue_95327() where <u8 as Unresolved>::Assoc: String {}
 //~^ ERROR expected trait, found struct
-//~| ERROR use of undeclared type `Unresolved`
+//~| ERROR cannot find trait `Unresolved` in this scope
 
 fn main() {}