about summary refs log tree commit diff
path: root/tests/rustdoc-ui/unable-fulfill-trait.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-06-04 14:49:54 +0000
committerbors <bors@rust-lang.org>2024-06-04 14:49:54 +0000
commit30ea1a2693bb1ba4b119ac6257985b9e11e45b83 (patch)
tree6ef3551ed54771be991beeae7b9e8f43a09fd41c /tests/rustdoc-ui/unable-fulfill-trait.rs
parentbc33782c23bc3e04eab7c85c43bbe1a108b11f80 (diff)
parenta5dc684eee684c23032f8f8beba1ff90322a61f8 (diff)
downloadrust-30ea1a2693bb1ba4b119ac6257985b9e11e45b83.tar.gz
rust-30ea1a2693bb1ba4b119ac6257985b9e11e45b83.zip
Auto merge of #125976 - compiler-errors:rollup-xt3le7w, r=compiler-errors
Rollup of 8 pull requests

Successful merges:

 - #125667 (Silence follow-up errors directly based on error types and regions)
 - #125717 (Refactor `#[diagnostic::do_not_recommend]` support)
 - #125795 (Improve renaming suggestion for names with leading underscores)
 - #125865 (Fix ICE caused by ignoring EffectVars in type inference)
 - #125953 (Streamline `nested` calls.)
 - #125959 (Reduce `pub` exposure in `rustc_mir_build`)
 - #125967 (Split smir `Const` into `TyConst` and `MirConst`)
 - #125968 (Store the types of `ty::Expr` arguments in the `ty::Expr`)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'tests/rustdoc-ui/unable-fulfill-trait.rs')
-rw-r--r--tests/rustdoc-ui/unable-fulfill-trait.rs13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/rustdoc-ui/unable-fulfill-trait.rs b/tests/rustdoc-ui/unable-fulfill-trait.rs
index a69f74b09ac..f3b6256346f 100644
--- a/tests/rustdoc-ui/unable-fulfill-trait.rs
+++ b/tests/rustdoc-ui/unable-fulfill-trait.rs
@@ -1,13 +1,16 @@
 // This test ensures that it's not crashing rustdoc.
 
 pub struct Foo<'a, 'b, T> {
-    field1: dyn Bar<'a, 'b,>,
+    field1: dyn Bar<'a, 'b>,
     //~^ ERROR
     //~| ERROR
+    //~| ERROR
 }
 
 pub trait Bar<'x, 's, U>
-    where U: 'x,
-    Self:'x,
-    Self:'s
-{}
+where
+    U: 'x,
+    Self: 'x,
+    Self: 's,
+{
+}