mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
231 B
Rust
14 lines
231 B
Rust
// build-pass
|
|
|
|
#![no_implicit_prelude]
|
|
|
|
fn main() {
|
|
::std::panic!();
|
|
::std::todo!();
|
|
::std::unimplemented!();
|
|
::std::assert_eq!(0, 0);
|
|
::std::assert_ne!(0, 1);
|
|
::std::dbg!(123);
|
|
::std::unreachable!();
|
|
}
|