mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
10 lines
116 B
Rust
10 lines
116 B
Rust
#![feature(main)]
|
|
|
|
#[main]
|
|
fn bar() {
|
|
}
|
|
|
|
#[main]
|
|
fn foo() { //~ ERROR multiple functions with a #[main] attribute
|
|
}
|