forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#118251 - notriddle:notriddle/less-recursion, r=GuillaumeGomez rustdoc-search: avoid infinite where clause unbox Fixes rust-lang#118242
- Loading branch information
Showing
3 changed files
with
68 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Crash reduction of | ||
// https://github.com/rust-lang/rust/issues/118242 | ||
|
||
const EXPECTED = [ | ||
{ | ||
'query': 't', | ||
'correction': null, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#![crate_name="foo"] | ||
|
||
// reduced from sqlx 0.7.3 | ||
use std::future::Future; | ||
use std::pin::Pin; | ||
use std::ops::{Deref, DerefMut}; | ||
pub enum Error {} | ||
pub trait Acquire<'c> { | ||
type Database: Database; | ||
type Connection: Deref<Target = <Self::Database as Database>::Connection> + DerefMut + Send; | ||
} | ||
pub trait Database { | ||
type Connection: Connection<Database = Self>; | ||
} | ||
pub trait Connection { | ||
type Database: Database; | ||
type Options: ConnectionOptions<Connection = Self>; | ||
fn begin( | ||
&mut self | ||
) -> Pin<Box<dyn Future<Output = Result<Transaction<'_, Self::Database>, Error>> + Send + '_>> | ||
where | ||
Self: Sized; | ||
} | ||
pub trait ConnectionOptions { | ||
type Connection: Connection; | ||
} | ||
pub struct Transaction<'c, DB: Database> { | ||
_db: &'c DB, | ||
} | ||
impl<'t, 'c, DB: Database> Acquire<'t> for &'t mut Transaction<'c, DB> | ||
where <DB as Database>::Connection: Send | ||
{ | ||
type Database = DB; | ||
type Connection = &'t mut <DB as Database>::Connection; | ||
} |