summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_ast/src/entry.rs
blob: 3370146193a522839ec368071b341b9596981840 (plain)
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub enum EntryPointType {
    None,
    MainNamed,
    RustcMainAttr,
    Start,
    OtherMain, // Not an entry point, but some other function named main
}