summaryrefslogtreecommitdiffstats
path: root/tests-build/tests/fail/macros_invalid_input.rs
blob: 5b1a8adc07562f3edf3dbcf0ccb8127ecb7786e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use tests_build::tokio;

#[tokio::main]
fn main_is_not_async() {}

#[tokio::main(foo)]
async fn main_attr_has_unknown_args() {}

#[tokio::main(threadpool::bar)]
async fn main_attr_has_path_args() {}

#[tokio::test]
fn test_is_not_async() {}

#[tokio::test]
async fn test_fn_has_args(_x: u8) {}

#[tokio::test(foo)]
async fn test_attr_has_args() {}

#[tokio::test]
#[test]
async fn test_has_second_test_attr() {}

fn main() {}