mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
18 lines
220 B
D
18 lines
220 B
D
/*
|
|
https://issues.dlang.org/show_bug.cgi?id=21779
|
|
|
|
PERMUTE_ARGS: -checkaction=context
|
|
ARG_SETS: -release
|
|
ARG_SETS: -check=assert=off
|
|
*/
|
|
|
|
int boo()
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
extern(C) int main()
|
|
{
|
|
assert(boo());
|
|
return 0;
|
|
}
|