]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/bound-suggestions.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / bound-suggestions.rs
index 605a6df838658f31b5dd231af3307152b9b2781a..562dec9f080de55e89350c49b20ab13e27bb2443 100644 (file)
@@ -19,7 +19,7 @@ fn test_one_bound<T: Sized>(t: T) {
 }
 
 #[allow(dead_code)]
-fn test_no_bounds_where<X, Y>(x: X, y: Y) where X: std::fmt::Debug {
+fn test_no_bounds_where<X, Y>(x: X, y: Y) where X: std::fmt::Debug, {
     println!("{:?} {:?}", x, y);
     //~^ ERROR doesn't implement
 }