Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
contracts
/
preload_nocontinue_handler
/
assert_fail.cpp
blob: a17a6239bb7f96276907ca4bf3a7c84d89e18b02 [
file
] [
log
] [
blame
]
#include
<iostream>
int
main
(
int
,
char
**)
{
int
x
=
0
;
[[
assert
:
x
<
0
]];
std
::
cout
<<
"returning from main"
<<
std
::
endl
;
return
0
;
}