summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
blob: c8408d16fbb0d5bab35d1f007c1073f00e17000d (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() {
}