summary refs log tree commit diff
path: root/src/test/ui/multiple-main-2.rs
blob: e4685b1e004565192f9f18faf048eb8ac9a662c2 (plain)
1
2
3
4
5
6
7
8
9
#![feature(main)]

#[main]
fn bar() {
}

#[main]
fn foo() { //~ ERROR multiple functions with a `#[main]` attribute
}