Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rfcs
/
rfc-2091-track-caller
/
error-with-main.rs
blob: b2ea31bb5178b48493c49aaa089644bfb2fd95d0 [
file
] [
log
] [
blame
]
#[
track_caller
]
//~ ERROR `main` function is not allowed to be
fn
main
()
{
panic
!(
"{}: oh no"
,
std
::
panic
::
Location
::
caller
());
}