about summary refs log tree commit diff
path: root/tests/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
blob: 37d94830db2cff35ef6a4717d88f7c022f574179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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() {
}