1#[cfg(feature = "full")]
2#[tokio::test]
3async fn test_with_semicolon_without_return_type() {
4 #![deny(clippy::semicolon_if_nothing_returned)]
5
6 dbg!(0);
7}
8