mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
16 lines
282 B
Rust
16 lines
282 B
Rust
// aux-build:common.rs
|
|
// only-x86_64
|
|
// run-pass
|
|
// needs-unwind Asserting on contents of error message
|
|
|
|
#![feature(core_intrinsics, generic_assert)]
|
|
|
|
extern crate common;
|
|
|
|
fn main() {
|
|
common::test!(
|
|
let mut _nothing = ();
|
|
[ 1 == 3 ] => "Assertion failed: 1 == 3"
|
|
);
|
|
}
|