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