mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
215 B
Rust
14 lines
215 B
Rust
//@ compile-flags: --test
|
|
//@ run-pass
|
|
|
|
#![feature(core_intrinsics, generic_assert)]
|
|
|
|
#[should_panic(expected = "Custom user message")]
|
|
#[test]
|
|
fn test() {
|
|
assert!(1 == 3, "Custom user message");
|
|
}
|
|
|
|
fn main() {
|
|
}
|