dagger-runtime-benchmark/bench_app/target/debug/build/thiserror-c09c00dc388a372e/out/probe.rs
2023-05-18 15:50:47 +02:00

9 lines
167 B
Rust

#![feature(provide_any)]
use std::any::{Demand, Provider};
fn _f<'a, P: Provider>(p: &'a P, demand: &mut Demand<'a>) {
p.provide(demand);
}