rustc/compiler/rustc_ast/src/entry.rs
2022-11-15 19:41:33 +01:00

9 lines
173 B
Rust

#[derive(Debug)]
pub enum EntryPointType {
None,
MainNamed,
RustcMainAttr,
Start,
OtherMain, // Not an entry point, but some other function named main
}