add a test for #103095

This commit is contained in:
Takayuki Maeda 2022-12-08 16:55:57 +09:00
parent ed61c139c2
commit 2423ea2c5f

View File

@ -0,0 +1,30 @@
// check-pass
trait FnOnceForGenericRef<T>: FnOnce(&T) -> Self::FnOutput {
type FnOutput;
}
impl<T, R, F: FnOnce(&T) -> R> FnOnceForGenericRef<T> for F {
type FnOutput = R;
}
struct Data<T, D: FnOnceForGenericRef<T>> {
value: Option<T>,
output: Option<D::FnOutput>,
}
impl<T, D: FnOnceForGenericRef<T>> Data<T, D> {
fn new(value: T, f: D) -> Self {
let output = f(&value);
Self {
value: Some(value),
output: Some(output),
}
}
}
fn test() {
Data::new(String::new(), |_| {});
}
fn main() {}