]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_ast/src/entry.rs
New upstream version 1.63.0+dfsg1
[rustc.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 }