]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast/src/entry.rs
Rollup merge of #84250 - jclulow:illumos-bash-bootstrap, r=Mark-Simulacrum
[rust.git] / compiler / rustc_ast / src / entry.rs
1 pub enum EntryPointType {
2     None,
3     MainNamed,
4     MainAttr,
5     Start,
6     OtherMain, // Not an entry point, but some other function named main
7 }