File: args_repeated.rs

package info (click to toggle)
rust-async-recursion 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
use async_recursion::async_recursion;

#[async_recursion(?Send, ?Send)]
async fn repeated_args_1() {}

#[async_recursion(?Send, Sync, ?Send)]
async fn repeated_args_2() {}

#[async_recursion(Sync, ?Send, Sync, ?Send)]
async fn repeated_args_3() {}

fn main() {}