]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/attr-main-2.rs
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / run-pass / attr-main-2.rs
CommitLineData
85aaf69f 1#![feature(main)]
223e47cc
LB
2
3pub fn main() {
1a4d82fc 4 panic!()
223e47cc
LB
5}
6
7#[main]
8fn foo() {
9}