mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
14 lines
213 B
Rust
14 lines
213 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() {
|
|
}
|