Sign in
android
/
toolchain
/
rustc
/
fc8a4ff31fec5a822fe5eb0da3a6f87866072960
/
.
/
src
/
test
/
ui
/
macros
/
rfc-2011-nicer-assert-messages
/
assert-without-captures-does-not-create-unnecessary-code.rs
blob: 06c4993ec30d6968b1dbbd26cbfa1d31a272e98a [
file
] [
log
] [
blame
]
// aux-build:common.rs
// only-x86_64
// run-pass
#![
feature
(
core_intrinsics
,
generic_assert
,
generic_assert_internals
)]
extern
crate common
;
fn
main
()
{
common
::
test
!(
let
mut
_nothing
=
();
[
1
==
3
]
=>
"Assertion failed: 1 == 3"
);
}