mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
15 lines
183 B
Text
15 lines
183 B
Text
=== compilable/checkaction-context-assert-0.d.cg
|
|
module checkaction_context_assert_0;
|
|
import object;
|
|
void a()
|
|
{
|
|
assert(0);
|
|
}
|
|
void b()
|
|
{
|
|
assert(false);
|
|
}
|
|
void c()
|
|
{
|
|
assert(null);
|
|
}
|