Skip to content

Instantly share code, notes, and snippets.

Created December 7, 2017 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d554dfe63da1c64ed89dfa643419743d to your computer and use it in GitHub Desktop.
Save anonymous/d554dfe63da1c64ed89dfa643419743d to your computer and use it in GitHub Desktop.
Rust code shared from the playground
#![allow(unreachable_code)]
// コンパイル可能だったが、2017-12-07 の nightly では不可。
fn dont_return() -> ! {
panic!();
// (ここから到達不可能)
1
}
fn main() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment