]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast/src/entry.rs
Merge commit '61667dedf55e3e5aa584f7ae2bd0471336b92ce9' into sync_cg_clif-2021-09-19
[rust.git] / compiler / rustc_ast / src / entry.rs
1 #[derive(Debug)]
2 pub enum EntryPointType {
3     None,
4     MainNamed,
5     MainAttr,
6     Start,
7     OtherMain, // Not an entry point, but some other function named main
8 }