-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
A-tokio-macrosArea: The tokio-macros crateArea: The tokio-macros crateC-bugCategory: This is a bug.Category: This is a bug.
Description
Version
[dependencies]
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
Platform
Linux x86_64
Description
The following code compiles playground link
#[tokio::main]
async fn main() {
return 1;
;
}
The following don't compile, as expected
#[tokio::main]
async fn main() {
return 1;
()
}
#[tokio::main]
async fn main() {
return 1;
}
#[tokio::main]
async fn main() {
1
}
Metadata
Metadata
Assignees
Labels
A-tokio-macrosArea: The tokio-macros crateArea: The tokio-macros crateC-bugCategory: This is a bug.Category: This is a bug.