feat: add dist

This commit is contained in:
2023-05-18 15:50:47 +02:00
parent d976ad8621
commit 43ea3840cd
1879 changed files with 5754 additions and 2 deletions

View File

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