14 lines
239 B
Rust
14 lines
239 B
Rust
// compile-flags: --test
|
|
// run-pass
|
|
|
|
#![feature(core_intrinsics, generic_assert, generic_assert_internals)]
|
|
|
|
#[should_panic(expected = "Custom user message")]
|
|
#[test]
|
|
fn test() {
|
|
assert!(1 == 3, "Custom user message");
|
|
}
|
|
|
|
fn main() {
|
|
}
|