rust/tests/ui/macros/rfc-2011-nicer-assert-messages/assert-without-captures-does-not-create-unnecessary-code.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
282 B
Rust
Raw Normal View History

// aux-build:common.rs
// only-x86_64
// run-pass
// needs-unwind Asserting on contents of error message
2023-05-24 19:15:50 -05:00
#![feature(core_intrinsics, generic_assert)]
extern crate common;
fn main() {
common::test!(
let mut _nothing = ();
[ 1 == 3 ] => "Assertion failed: 1 == 3"
);
}