rust/compiler/rustc_ast/src/entry.rs

8 lines
151 B
Rust
Raw Normal View History

pub enum EntryPointType {
None,
MainNamed,
MainAttr,
Start,
OtherMain, // Not an entry point, but some other function named main
}