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