mirror of
https://github.com/github/codeql.git
synced 2026-04-12 02:24:00 +02:00
7 lines
170 B
Rust
7 lines
170 B
Rust
// Type mentions required by type inference
|
|
|
|
use std::future::Future;
|
|
fn mention_dyn_future<T>(f: &dyn Future<Output = T>) {}
|
|
|
|
fn mention_dyn_fn<F>(f: &dyn Fn() -> F) {}
|