summary refs log tree commit diff
path: root/compiler/rustc_ast/src/entry.rs
blob: 290f6006de0790f25cac9f7618e061f54a92e1a7 (plain)
1
2
3
4
5
6
7
pub enum EntryPointType {
    None,
    MainNamed,
    MainAttr,
    Start,
    OtherMain, // Not an entry point, but some other function named main
}