2024-02-16 20:02:50 +00:00
|
|
|
//@ compile-flags: --test
|
|
|
|
|
//@ run-pass
|
2022-06-15 07:37:40 -03:00
|
|
|
|
2023-05-24 21:15:50 -03:00
|
|
|
#![feature(core_intrinsics, generic_assert)]
|
2022-06-15 07:37:40 -03:00
|
|
|
|
|
|
|
|
#[should_panic(expected = "Custom user message")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test() {
|
|
|
|
|
assert!(1 == 3, "Custom user message");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
}
|